summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-03-18 10:12:15 +0100
committerPeter Simons <simons@cryp.to>2016-03-18 11:02:17 +0100
commitab450f8477e30b211798de97e197c2e77799acd6 (patch)
tree6b35a2cba26ade60b3f1aecf03c50f2f9d1f4532 /pkgs
parenteadf39a16cf3f8c1fa7cf57976045456155b7e70 (diff)
downloadnixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar.gz
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar.bz2
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar.lz
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar.xz
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.tar.zst
nixpkgs-ab450f8477e30b211798de97e197c2e77799acd6.zip
gnupg-2.1: add myself as maintainer plus minor cosmetic
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/gnupg/21.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix
index b7231454c45..0af041e63df 100644
--- a/pkgs/tools/security/gnupg/21.nix
+++ b/pkgs/tools/security/gnupg/21.nix
@@ -20,24 +20,24 @@ stdenv.mkDerivation rec {
     sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p";
   };
 
-  postPatch = stdenv.lib.optionalString stdenv.isLinux ''
-    sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
-  ''; #" fix Emacs syntax highlighting :-(
-
-  postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
-
   buildInputs = [
     pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
     readline libusb gnutls adns openldap zlib bzip2
   ];
 
+  postPatch = stdenv.lib.optionalString stdenv.isLinux ''
+    sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
+  ''; #" fix Emacs syntax highlighting :-(
+
   configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry";
 
+  postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
+
   meta = with stdenv.lib; {
     homepage = http://gnupg.org;
     description = "a complete and free implementation of the OpenPGP standard";
     license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ wkennington ];
+    maintainers = with maintainers; [ wkennington simons ];
     platforms = platforms.all;
   };
 }