2014-10-31 18:47:03 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, npth
|
|
|
|
, readline ? null, libusb ? null, gnutls ? null, adns ? null, openldap ? null
|
2014-11-18 21:58:14 +00:00
|
|
|
, zlib ? null, bzip2 ? null, pinentry ? null, autoreconfHook, gettext
|
2015-03-09 22:16:03 +00:00
|
|
|
, pcsclite
|
2014-10-31 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-12 15:52:07 +00:00
|
|
|
name = "gnupg-2.1.2";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2015-02-12 15:52:07 +00:00
|
|
|
sha256 = "14k7c5spai3yppz6izf1ggbnffskl54ln87v1wgy9pwism1mlks0";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
|
2014-12-24 02:20:04 +00:00
|
|
|
patches = [ ./socket-activate-2.1.1.patch ];
|
2014-11-18 21:58:14 +00:00
|
|
|
|
2015-03-09 22:16:03 +00:00
|
|
|
postPatch = ''
|
|
|
|
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
|
|
|
|
readline libusb gnutls adns openldap zlib bzip2
|
2014-11-18 21:58:14 +00:00
|
|
|
autoreconfHook gettext
|
2014-10-31 18:47:03 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
optional (pinentry != null) "--with-pinentry-pgm=${pinentry}/bin/pinentry";
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|