2015-07-25 05:44:17 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
|
2016-03-18 09:10:28 +00:00
|
|
|
, gettext, texinfo, pcsclite
|
2015-03-21 13:01:52 +00: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 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 {
|
2016-05-10 00:39:41 +01:00
|
|
|
name = "gnupg-2.1.12";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2016-05-10 00:39:41 +01:00
|
|
|
sha256 = "01n5py45x0r97l4dzmd803jpbpbcxr1591k3k4s8m9804jfr4d5c";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-03-18 09:10:28 +00:00
|
|
|
pkgconfig libgcrypt libassuan libksba libiconv npth 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
|
|
|
];
|
|
|
|
|
2016-03-18 09:12:15 +00:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
|
|
|
''; #" fix Emacs syntax highlighting :-(
|
|
|
|
|
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
|
|
|
|
2016-03-18 09:12:15 +00:00
|
|
|
postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
|
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://gnupg.org;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A complete and free implementation of the OpenPGP standard";
|
2014-10-31 18:47:03 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = with maintainers; [ wkennington peti fpletz ];
|
2014-10-31 18:47:03 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|