diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:03:15 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:03:15 +0100 |
commit | 6709752fe7743109175c8bcd5bd77d80ffbf7d61 (patch) | |
tree | 8a17b5f6420f3f15364320f5dc220c6d73d6fc4e /release.nix | |
parent | 9b48fb88ca8177c987b0d3bf2e9ae46dac782430 (diff) | |
download | patches-6709752fe7743109175c8bcd5bd77d80ffbf7d61.tar patches-6709752fe7743109175c8bcd5bd77d80ffbf7d61.tar.gz |
release.nix: Pass `--with-libgcrypt-prefix' in the `tarball' job.
* release.nix (jobs.tarball)[configureFlags]: Pass
`--with-libgcrypt-prefix'.
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 4 |
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 = |