gnupg-2.1: add myself as maintainer plus minor cosmetic

+7 -7
+7 -7
pkgs/tools/security/gnupg/21.nix
··· 20 20 sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p"; 21 21 }; 22 22 23 - postPatch = stdenv.lib.optionalString stdenv.isLinux '' 24 - sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 25 - ''; #" fix Emacs syntax highlighting :-( 26 - 27 - postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; 28 - 29 23 buildInputs = [ 30 24 pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo 31 25 readline libusb gnutls adns openldap zlib bzip2 32 26 ]; 33 27 28 + postPatch = stdenv.lib.optionalString stdenv.isLinux '' 29 + sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c 30 + ''; #" fix Emacs syntax highlighting :-( 31 + 34 32 configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry"; 35 33 34 + postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c"; 35 + 36 36 meta = with stdenv.lib; { 37 37 homepage = http://gnupg.org; 38 38 description = "a complete and free implementation of the OpenPGP standard"; 39 39 license = licenses.gpl3Plus; 40 - maintainers = with maintainers; [ wkennington ]; 40 + maintainers = with maintainers; [ wkennington simons ]; 41 41 platforms = platforms.all; 42 42 }; 43 43 }