nixpkgs-suyu/pkgs/tools/security/gnupg/21.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

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