2014-10-31 18:47:03 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, npth
|
2015-03-21 13:01:52 +00:00
|
|
|
, autoreconfHook, gettext, texinfo, pcsclite
|
|
|
|
|
|
|
|
# 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 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
|
|
|
assert x11Support -> pinentry != null;
|
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-07-05 23:51:03 +00:00
|
|
|
name = "gnupg-2.1.6";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2015-07-05 23:51:03 +00:00
|
|
|
sha256 = "1zcj5vsrc64zyq7spnx2xlxlq6wxaf5bilpf6gbkp7qr8barlnay";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
|
2015-03-21 16:13:51 +00:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
2015-03-09 22:16:03 +00:00
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
|
|
|
'';
|
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig libgcrypt libassuan libksba npth
|
2015-03-16 00:32:16 +00:00
|
|
|
autoreconfHook gettext texinfo
|
2015-03-21 13:01:52 +00:00
|
|
|
readline libusb gnutls adns openldap zlib bzip2
|
2014-10-31 18:47:03 +00:00
|
|
|
];
|
|
|
|
|
2015-03-21 13:01:52 +00:00
|
|
|
configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry";
|
2014-10-31 18:47:03 +00: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;
|
|
|
|
};
|
|
|
|
}
|