summary refs log tree commit diff
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-06-07 21:50:36 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-06-07 21:50:36 +0000
commit1c4b8e4886615ccea7b9ba4903e67297d630a4b6 (patch)
tree817344e96db42b07be1d271d29821e232d6e9196
parent25c8f01659c71fec0a1c041695e489493db2e090 (diff)
downloadnixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar.gz
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar.bz2
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar.lz
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar.xz
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.tar.zst
nixpkgs-1c4b8e4886615ccea7b9ba4903e67297d630a4b6.zip
gpgme: propagate some dependencies
svn path=/nixpkgs/trunk/; revision=27384
-rw-r--r--pkgs/development/libraries/gpgme/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix
index 42a592bf2dc..0e0bed42a9a 100644
--- a/pkgs/development/libraries/gpgme/default.nix
+++ b/pkgs/development/libraries/gpgme/default.nix
@@ -6,6 +6,9 @@ stdenv.mkDerivation rec {
     url = "ftp://ftp.gnupg.org/gcrypt/gpgme/${name}.tar.bz2";
     sha256 = "18g6wgiacnbj437yfsczbjxaf041ljia48dnv2qgcqb0sky41q3l";
   };
-  buildInputs = [libgpgerror gnupg pkgconfig glib pth libassuan];
+  propagatedBuildInputs = [libgpgerror glib pth libassuan];
+
+  buildNativeInputs = [pkgconfig];
+
   configureFlags = "--with-gpg=${gnupg}/bin/gpg2";
 }