diff options
author | Mark H Weaver <mhw@netris.org> | 2015-04-19 09:55:01 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-04-19 10:15:04 -0400 |
commit | 42f118010be14b761144efccae9bdeb33a3db212 (patch) | |
tree | d59b415072fb2ac8c60c267bd18cc3cbd86855d6 /gnu/packages | |
parent | 5dc3ce5f6c7990f44143f8e9bb9a873a014a82e4 (diff) | |
download | guix-42f118010be14b761144efccae9bdeb33a3db212.tar.gz guix-42f118010be14b761144efccae9bdeb33a3db212.zip |
gnu: ccl: Fix inputs on non-Intel platforms.
* gnu/packages/lisp.scm (ccl)[inputs]: Add default cases in 'match' forms.
Fix pattern in "armhf-linux" case of sha256 field.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/lisp.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index f0599a95c6..8f12efb9eb 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -309,15 +309,19 @@ statistical profiler, a code coverage tool, and many other extensions.") "ftp://ftp.clozure.com/pub/release/1.10/ccl-" version "-" (match (%current-system) ((or "i686-linux" "x86_64-linux") "linuxx86") - ("armhf-linux" "linuxarm")) + ("armhf-linux" "linuxarm") + ;; Prevent errors when querying this package on unsupported + ;; platforms, e.g. when running "guix package --search=" + (_ "UNSUPPORTED")) ".tar.gz")) (sha256 (base32 (match (%current-system) ((or "i686-linux" "x86_64-linux") "0mr653q5px05lr11z2mk551m5g47b4wq96vbfibpp0qlc9jp58lc") - ("armhf" - "1py02irpmi2qz5rq3h33wfv6impf15z8i2rign6hvhlqn7s99wwh")))))))) + ("armhf-linux" + "1py02irpmi2qz5rq3h33wfv6impf15z8i2rign6hvhlqn7s99wwh") + (_ "")))))))) (native-inputs `(("m4" ,m4) ("subversion" ,subversion))) |