tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gnupg-2.1: add myself as maintainer plus minor cosmetic
Peter Simons
10 years ago
ab450f84
eadf39a1
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
gnupg
21.nix
+7
-7
pkgs/tools/security/gnupg/21.nix
···
20
20
sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p";
21
21
};
22
22
23
23
-
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
24
24
-
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
25
25
-
''; #" fix Emacs syntax highlighting :-(
26
26
-
27
27
-
postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
28
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
28
+
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
29
29
+
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
30
30
+
''; #" fix Emacs syntax highlighting :-(
31
31
+
34
32
configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry";
35
33
34
34
+
postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
35
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
40
-
maintainers = with maintainers; [ wkennington ];
40
40
+
maintainers = with maintainers; [ wkennington simons ];
41
41
platforms = platforms.all;
42
42
};
43
43
}