Merge pull request #59060 from delroth/libsecret-cross

libsecret: pass libgcrypt prefix to ./configure (cross compilation fix)
This commit is contained in:
Michael Raskin 2019-04-07 07:55:42 +00:00 committed by GitHub
commit 85350d855f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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 ];