diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-02 16:47:00 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-02 16:51:43 +0100 |
commit | ec38437f9400fa4b2fa8f4a876d3e35c64fdb213 (patch) | |
tree | 8777ec1652be49c66a02acc629951a40a3e96a1a | |
parent | 7ce7361b764f999b7ff7aa63bb9a87fddd617b5f (diff) | |
download | guix-ec38437f9400fa4b2fa8f4a876d3e35c64fdb213.tar guix-ec38437f9400fa4b2fa8f4a876d3e35c64fdb213.tar.gz |
packages: Use the target's system Guile when downloading patches.
* guix/packages.scm (patch-and-repack)[patch-inputs]: Pass SYSTEM in
'package-source-derivation' call.
-rw-r--r-- | guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 67a767106e..07f6d0ccbc 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -376,7 +376,7 @@ IMPORTED-MODULES specify modules to use/import for use by SNIPPET." (add-to-store store (basename patch) #t "sha256" patch)) ((? origin?) - (package-source-derivation store patch))))) + (package-source-derivation store patch system))))) (iota (length patches)) patches)) |