2015-07-24 21:44:17 -07:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
|
2016-03-18 02:10:28 -07:00
|
|
|
, gettext, texinfo, pcsclite
|
2015-03-21 06:01:52 -07:00
|
|
|
|
|
|
|
# Each of the dependencies below are optional.
|
|
|
|
# Gnupg can be built without them at the cost of reduced functionality.
|
2016-06-17 01:26:41 -07:00
|
|
|
, pinentry ? null, guiSupport ? true
|
2015-03-21 06:01:52 -07:00
|
|
|
, adns ? null, gnutls ? null, libusb ? null, openldap ? null
|
|
|
|
, readline ? null, zlib ? null, bzip2 ? null
|
2014-10-31 11:47:03 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2015-03-21 06:01:52 -07:00
|
|
|
|
2016-06-17 01:26:41 -07:00
|
|
|
assert guiSupport -> pinentry != null;
|
2015-03-21 06:01:52 -07:00
|
|
|
|
2014-10-31 11:47:03 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-23 00:26:48 -07:00
|
|
|
name = "gnupg-${version}";
|
|
|
|
|
2016-08-24 15:46:56 -07:00
|
|
|
version = "2.1.15";
|
2014-10-31 11:47:03 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2016-08-24 15:46:56 -07:00
|
|
|
sha256 = "1pgz02gd84ab94w4xdg67p9z8kvkyr9d523bvcxxd2hviwh1m362";
|
2014-10-31 11:47:03 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-03-18 02:10:28 -07:00
|
|
|
pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
|
2015-03-21 06:01:52 -07:00
|
|
|
readline libusb gnutls adns openldap zlib bzip2
|
2014-10-31 11:47:03 -07:00
|
|
|
];
|
|
|
|
|
2016-10-19 12:24:37 -07:00
|
|
|
patches = [ ./fix-libusb-include-path.patch ];
|
2016-03-18 02:12:15 -07:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
|
|
|
''; #" fix Emacs syntax highlighting :-(
|
|
|
|
|
2016-06-17 01:26:41 -07:00
|
|
|
configureFlags = optional guiSupport "--with-pinentry-pgm=${pinentry}/bin/pinentry";
|
2014-10-31 11:47:03 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://gnupg.org;
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "A complete and free implementation of the OpenPGP standard";
|
2014-10-31 11:47:03 -07:00
|
|
|
license = licenses.gpl3Plus;
|
2016-06-23 00:26:48 -07:00
|
|
|
maintainers = with maintainers; [ wkennington peti fpletz vrthra ];
|
2014-10-31 11:47:03 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|