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

34 lines
994 B
Nix
Raw Normal View History

{ 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
}:
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
buildInputs = [
pkgconfig libgcrypt libassuan libksba npth
readline libusb gnutls adns openldap zlib bzip2
2014-11-18 21:58:14 +00:00
autoreconfHook gettext
];
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;
};
}