mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
libsecret: pass libgcrypt prefix to ./configure
Fixes cross compilation builds not finding the libgcrypt-config binary.
This commit is contained in:
parent
57de25b319
commit
2306fa644c
@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ libgcrypt ];
|
||||
# optional: build docs with gtk-doc? (probably needs a flag as well)
|
||||
|
||||
configureFlags = [
|
||||
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
installCheckInputs = [ python3 python3.pkgs.dbus-python python3.pkgs.pygobject3 xvfb_run dbus gnome3.gjs ];
|
||||
|
Loading…
Reference in New Issue
Block a user