Skip to content

Commit

Permalink
Revert "gpgme: Drop multiple outputs (dev and info)"
Browse files Browse the repository at this point in the history
This reverts commit 8727702.

This will fix fwknop as well (should have done it like this in the first
place, where was my mind...).

Conclusion: Did something stupid... :o - I am *so incredibly sorry*,
will be way more careful (was already careful, but apparently not
enought...) next time and use nox.

Sorry @everyone and thanks @calvertvl for noticing this.
  • Loading branch information
primeos committed Mar 21, 2017
1 parent 242031a commit 4e29638
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/libraries/gpgme/default.nix
Expand Up @@ -16,6 +16,9 @@ stdenv.mkDerivation rec {
sha256 = "0csx3qnycwm0n90ql6gs65if5xi4gqyzzy21fxs2xqicghjrfq2r";
};

outputs = [ "out" "dev" "info" ];
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool

propagatedBuildInputs = [ libgpgerror glib libassuan pth ];

nativeBuildInputs = [ pkgconfig gnupg ];
Expand Down
4 changes: 2 additions & 2 deletions pkgs/tools/security/fwknop/default.nix
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libpcap texinfo ]
++ stdenv.lib.optional gnupgSupport [ gnupg gpgme ]
++ stdenv.lib.optional gnupgSupport [ gnupg gpgme.dev ]
++ stdenv.lib.optional wgetSupport [ wget ];

configureFlags = ''
Expand All @@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
${lib.optionalString (!buildClient) "--disable-client"}
${lib.optionalString gnupgSupport ''
--with-gpgme
--with-gpgme-prefix=${gpgme}
--with-gpgme-prefix=${gpgme.dev}
--with-gpg=${gnupg}
''}
${lib.optionalString wgetSupport ''
Expand Down

0 comments on commit 4e29638

Please sign in to comment.