mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
release.nix: Add dependency on GNU libgcrypt.
* release.nix (build)[configureFlags]: Add `--with-libgcrypt-prefix'.
This commit is contained in:
parent
3a310cc017
commit
ad102c4683
1 changed files with 3 additions and 1 deletions
|
@ -44,7 +44,9 @@ let
|
||||||
buildNativeInputs = [ pkgs.pkgconfig ];
|
buildNativeInputs = [ pkgs.pkgconfig ];
|
||||||
src = jobs.tarball;
|
src = jobs.tarball;
|
||||||
configureFlags =
|
configureFlags =
|
||||||
[ "--with-nixpkgs=${nixpkgs}" "--with-nix-prefix=${pkgs.nix}" ];
|
[ "--with-nixpkgs=${nixpkgs}" "--with-nix-prefix=${pkgs.nix}"
|
||||||
|
"--with-libgcrypt-prefix=${pkgs.libgcrypt}"
|
||||||
|
];
|
||||||
|
|
||||||
# XXX: Since we need to talk to a running daemon, for the benefit of
|
# XXX: Since we need to talk to a running daemon, for the benefit of
|
||||||
# `nixpkgs-derivation*' & co., we need to escape the chroot.
|
# `nixpkgs-derivation*' & co., we need to escape the chroot.
|
||||||
|
|
Loading…
Reference in a new issue