diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-08 14:39:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-08 14:39:28 +0100 |
commit | 10879c4ea1dfbe7aadbc44dca2a75cd03b73e5a1 (patch) | |
tree | 77674a9b41fad5a37984f367398ec2831b5b55d1 /gnu | |
parent | 87d836b2c9087eb81c4f113191d829474a40ed96 (diff) | |
download | guix-10879c4ea1dfbe7aadbc44dca2a75cd03b73e5a1.tar guix-10879c4ea1dfbe7aadbc44dca2a75cd03b73e5a1.tar.gz |
gnu: bigloo: Propagate GMP.
* gnu/packages/scheme.scm (bigloo): Propagate GMP.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/scheme.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 7591813dfb..4ab6e32d64 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -151,9 +151,10 @@ development cycle.") (("/bin/mv") (which "mv")))) %standard-phases)))) (inputs - `(("gmp" ,gmp) - ("emacs" ,emacs) + `(("emacs" ,emacs) ("patch/shebangs" ,(search-patch "bigloo-gc-shebangs.patch")))) + (propagated-inputs + `(("gmp" ,gmp))) ; bigloo.h refers to gmp.h (home-page "http://www-sop.inria.fr/indes/fp/Bigloo/") (synopsis "Bigloo, an efficient Scheme compiler") (description |