diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-12-01 22:41:19 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-12-01 22:42:52 +0200 |
commit | 454e7132d6fffb5c9a5ce086ffd1b687416feb83 (patch) | |
tree | 63038ae791151344a8bc97dbcd168f4755815f48 | |
parent | f88c0ab831e2b14632557373349bfc8e67cb5858 (diff) | |
download | guix-454e7132d6fffb5c9a5ce086ffd1b687416feb83.tar.gz guix-454e7132d6fffb5c9a5ce086ffd1b687416feb83.zip |
gnu: ocaml@4.01: Remove aarch64-linux from supported-systems.
* gnu/packages/ocaml.scm (ocaml@4.01)[supported-systems]: New field.
-rw-r--r-- | gnu/packages/ocaml.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 08571eb6a9..c25f7c0858 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -256,7 +256,8 @@ functional, imperative and object-oriented styles of programming.") "make" "all" (string-append - "TOPDIR=" (getcwd) "/..")))))))))))) + "TOPDIR=" (getcwd) "/..")))))))))) + (supported-systems (delete "aarch64-linux" %supported-systems)))) (define-public ocaml-4.07 (package |