efraim pushed a commit to branch master
in repository guix.
commit 751b7aad1e85152413ac244a6cb457f8cea9c265
Author: Efraim Flashner <[email protected]>
Date: Wed Oct 7 12:16:45 2015 +0300
gnu: gprolog: Remove armhf from supported architectures.
* gnu/packages/gprolog.scm (gprolog)[supported-systems]: Remove
armhf-linux from the list of supported systems.
---
gnu/packages/gprolog.scm | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gprolog.scm b/gnu/packages/gprolog.scm
index 8c41bf4..1d9b994 100644
--- a/gnu/packages/gprolog.scm
+++ b/gnu/packages/gprolog.scm
@@ -18,10 +18,11 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages gprolog)
+ #:use-module (guix download)
#:use-module (guix licenses)
#:use-module (guix packages)
- #:use-module (guix download)
- #:use-module (guix build-system gnu))
+ #:use-module (guix build-system gnu)
+ #:use-module (srfi srfi-1))
(define-public gprolog
(package
@@ -55,4 +56,6 @@ manner. It also features an interactive interpreter.")
(license (list gpl2+ lgpl3+))
;; See 'configure' for the list of supported architectures.
- (supported-systems (delete "mips64el-linux" %supported-systems))))
+ (supported-systems (fold delete
+ %supported-systems
+ '("armhf-linux" "mips64el-linux")))))