Merge pull request #59060 from delroth/libsecret-cross
libsecret: pass libgcrypt prefix to ./configure (cross compilation fix)
This commit is contained in:
commit
85350d855f
|
@ -21,6 +21,10 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [ libgcrypt ];
|
buildInputs = [ libgcrypt ];
|
||||||
# optional: build docs with gtk-doc? (probably needs a flag as well)
|
# optional: build docs with gtk-doc? (probably needs a flag as well)
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
installCheckInputs = [ python3 python3.pkgs.dbus-python python3.pkgs.pygobject3 xvfb_run dbus gnome3.gjs ];
|
installCheckInputs = [ python3 python3.pkgs.dbus-python python3.pkgs.pygobject3 xvfb_run dbus gnome3.gjs ];
|
||||||
|
|
Loading…
Reference in New Issue