gnu: gprolog: Remove armhf from supported architectures.

* gnu/packages/gprolog.scm (gprolog)[supported-systems]: Remove
  armhf-linux from the list of supported systems.
master
Efraim Flashner 2015-10-07 12:16:45 +03:00
parent 2e13698763
commit 751b7aad1e
1 changed files with 6 additions and 3 deletions

View File

@ -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")))))