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

39 lines
1.1 KiB
Nix
Raw Normal View History

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