2015-07-25 06:44:17 +02:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
|
2016-03-18 10:10:28 +01:00
|
|
|
, gettext, texinfo, pcsclite
|
2015-03-21 14:01:52 +01:00
|
|
|
|
|
|
|
# Each of the dependencies below are optional.
|
|
|
|
# Gnupg can be built without them at the cost of reduced functionality.
|
|
|
|
, pinentry ? null, x11Support ? true
|
|
|
|
, adns ? null, gnutls ? null, libusb ? null, openldap ? null
|
|
|
|
, readline ? null, zlib ? null, bzip2 ? null
|
2014-10-31 19:47:03 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2015-03-21 14:01:52 +01:00
|
|
|
|
|
|
|
assert x11Support -> pinentry != null;
|
|
|
|
|
2014-10-31 19:47:03 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-02 16:29:34 +01:00
|
|
|
name = "gnupg-2.1.11";
|
2014-10-31 19:47:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2016-02-02 16:29:34 +01:00
|
|
|
sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p";
|
2014-10-31 19:47:03 +01:00
|
|
|
};
|
|
|
|
|
2015-03-21 17:13:51 +01:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
2015-03-09 23:16:03 +01:00
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
2015-12-04 21:11:04 +01:00
|
|
|
''; #" fix Emacs syntax highlighting :-(
|
2015-03-09 23:16:03 +01:00
|
|
|
|
2015-12-27 20:56:52 +01:00
|
|
|
postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
|
|
|
|
|
2014-10-31 19:47:03 +01:00
|
|
|
buildInputs = [
|
2016-03-18 10:10:28 +01:00
|
|
|
pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
|
2015-03-21 14:01:52 +01:00
|
|
|
readline libusb gnutls adns openldap zlib bzip2
|
2014-10-31 19:47:03 +01:00
|
|
|
];
|
|
|
|
|
2015-03-21 14:01:52 +01:00
|
|
|
configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry";
|
2014-10-31 19:47:03 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|