release.nix: Pass --with-libgcrypt-prefix' in the tarball' job.

* release.nix (jobs.tarball)[configureFlags]: Pass
  `--with-libgcrypt-prefix'.
This commit is contained in:
Ludovic Courtès 2012-11-04 13:03:15 +01:00
parent 9b48fb88ca
commit 6709752fe7

View File

@ -51,7 +51,9 @@ let
buildInputs = with pkgs; [ guile ]; buildInputs = with pkgs; [ guile ];
buildNativeInputs = with pkgs; [ texinfo gettext cvs pkgconfig ]; buildNativeInputs = with pkgs; [ texinfo gettext cvs pkgconfig ];
configureFlags = configureFlags =
[ "--with-nix-prefix=${pkgs.nix}" ]; [ "--with-nix-prefix=${pkgs.nix}"
"--with-libgcrypt-prefix=${pkgs.libgcrypt}"
];
}; };
build = build =