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
|
2014-10-31 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gnupg-2.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
|
|
|
sha256 = "12q5shx6ldqad3rky154nv8f2cy57sxy9idivz93ggqm1bsw7a0n";
|
|
|
|
};
|
|
|
|
|
2014-11-18 21:58:14 +00:00
|
|
|
patches = [ ./socket-activate.patch ];
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|