summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-03-18 10:10:28 +0100
committerPeter Simons <simons@cryp.to>2016-03-18 11:02:17 +0100
commiteadf39a16cf3f8c1fa7cf57976045456155b7e70 (patch)
tree6043c041825dc4807efeec0225dae034ad870881 /pkgs
parentde1138067938fa3f1bd4cd759ba9a3940bb4c9b6 (diff)
downloadnixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar.gz
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar.bz2
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar.lz
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar.xz
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.tar.zst
nixpkgs-eadf39a16cf3f8c1fa7cf57976045456155b7e70.zip
gnupg-2.1: drop unnecessary autoreconf hook from build
This change also prevents gnupg 2.1 from considering itself as an
unstable development version, which it is not.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/gnupg/21.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix
index dc86c6e420e..b7231454c45 100644
--- a/pkgs/tools/security/gnupg/21.nix
+++ b/pkgs/tools/security/gnupg/21.nix
@@ -1,5 +1,5 @@
 { fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
-, autoreconfHook, gettext, texinfo, pcsclite
+, gettext, texinfo, pcsclite
 
 # Each of the dependencies below are optional.
 # Gnupg can be built without them at the cost of reduced functionality.
@@ -27,8 +27,7 @@ stdenv.mkDerivation rec {
   postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
 
   buildInputs = [
-    pkgconfig libgcrypt libassuan libksba libiconv npth
-    autoreconfHook gettext texinfo
+    pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
     readline libusb gnutls adns openldap zlib bzip2
   ];