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

46 lines
1.4 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
, gettext, texinfo, pcsclite
2015-03-21 14:01:52 +01:00
# Each of the dependencies below are optional.
# Gnupg can be built without them at the cost of reduced functionality.
, pinentry ? null, guiSupport ? true
2015-03-21 14:01:52 +01:00
, 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 guiSupport -> pinentry != null;
2015-03-21 14:01:52 +01:00
stdenv.mkDerivation rec {
2016-06-23 09:26:48 +02:00
name = "gnupg-${version}";
2016-11-19 00:11:44 +01:00
version = "2.1.16";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
2016-11-19 00:11:44 +01:00
sha256 = "0i483m9q032a0s50f1izb213g4h5i7pcgn395m6hvl3sg2kadfa9";
};
buildInputs = [
pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
2015-03-21 14:01:52 +01:00
readline libusb gnutls adns openldap zlib bzip2
];
patches = [ ./fix-libusb-include-path.patch ];
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
''; #" fix Emacs syntax highlighting :-(
pinentryBinaryPath = pinentry.binaryPath or "bin/pinentry";
configureFlags = optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}";
meta = with stdenv.lib; {
homepage = http://gnupg.org;
description = "A complete and free implementation of the OpenPGP standard";
license = licenses.gpl3Plus;
2016-06-23 09:26:48 +02:00
maintainers = with maintainers; [ wkennington peti fpletz vrthra ];
platforms = platforms.all;
};
}