volume_key: fix cross
gpgme comes with autoconf macros, so needs to be in nativeBuildInputs. I've removed some redundant inputs as well: we don't need autoconf, automake and libtool since we have autoreconfHook, and we don't need gpgme in buildInputs since with --with-gpgme-prefix configure flag does the same thing. Set strictDeps to catch regressions.
This commit is contained in:
parent
5cf7d65f6a
commit
10a9cce769
1 changed files with 4 additions and 2 deletions
|
@ -16,9 +16,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
outputs = [ "out" "man" "dev" "py" ];
|
||||
|
||||
nativeBuildInputs = [ autoconf automake libtool pkg-config gettext swig autoreconfHook ];
|
||||
strictDeps = true;
|
||||
|
||||
buildInputs = [ glib cryptsetup nss util-linux gpgme ncurses ];
|
||||
nativeBuildInputs = [ autoreconfHook gettext gpgme pkg-config swig ];
|
||||
|
||||
buildInputs = [ glib cryptsetup nss util-linux ncurses ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-gpgme-prefix=${gpgme.dev}"
|
||||
|
|
Loading…
Reference in a new issue