summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-11-04 13:03:15 +0100
committerLudovic Courtès <ludo@gnu.org>2012-11-04 13:03:15 +0100
commit6709752fe7743109175c8bcd5bd77d80ffbf7d61 (patch)
tree8a17b5f6420f3f15364320f5dc220c6d73d6fc4e
parent9b48fb88ca8177c987b0d3bf2e9ae46dac782430 (diff)
downloadguix-6709752fe7743109175c8bcd5bd77d80ffbf7d61.tar.gz
release.nix: Pass `--with-libgcrypt-prefix' in the `tarball' job.
* release.nix (jobs.tarball)[configureFlags]: Pass
  `--with-libgcrypt-prefix'.
-rw-r--r--release.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 67e096ffc1..1b913b497b 100644
--- a/release.nix
+++ b/release.nix
@@ -51,7 +51,9 @@ let
         buildInputs = with pkgs; [ guile ];
         buildNativeInputs = with pkgs; [ texinfo gettext cvs pkgconfig ];
         configureFlags =
-          [ "--with-nix-prefix=${pkgs.nix}" ];
+          [ "--with-nix-prefix=${pkgs.nix}"
+            "--with-libgcrypt-prefix=${pkgs.libgcrypt}"
+          ];
       };
 
     build =