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

62 lines
2 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, readline, zlib, libgpgerror, pth, libgcrypt, libassuan
, libksba, coreutils, libiconvOrEmpty
, pinentry
2013-06-11 07:30:54 +00:00
, useLdap ? true, openldap ? null, useBzip2 ? true, bzip2 ? null
, useUsb ? true, libusb ? null, useCurl ? true, curl ? null
}:
assert useLdap -> (openldap != null);
assert useBzip2 -> (bzip2 != null);
assert useUsb -> (libusb != null);
assert useCurl -> (curl != null);
stdenv.mkDerivation rec {
2014-08-25 17:45:55 +00:00
name = "gnupg-2.0.26";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
2014-08-25 17:45:55 +00:00
sha256 = "1q5qcl5panrvcvpwvz6nl9gayl5a6vwvfhgdcxqpmbl2qc6y6n3p";
};
2013-06-11 07:30:54 +00:00
buildInputs
= [ readline zlib libgpgerror libgcrypt libassuan libksba pth ]
++ libiconvOrEmpty
++ stdenv.lib.optional useLdap openldap
++ stdenv.lib.optional useBzip2 bzip2
++ stdenv.lib.optional useUsb libusb
++ stdenv.lib.optional useCurl curl;
patchPhase = ''
find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
'';
configureFlags =
if pinentry != null then "--with-pinentry-pgm=${pinentry}/bin/pinentry"
else "";
checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check";
doCheck = true;
meta = {
2013-05-22 10:27:08 +00:00
homepage = "http://gnupg.org/";
description = "free implementation of the OpenPGP standard for encrypting and signing data";
2013-05-22 10:27:08 +00:00
license = stdenv.lib.licenses.gpl3Plus;
longDescription = ''
GnuPG is the GNU project's complete and free implementation of
the OpenPGP standard as defined by RFC4880. GnuPG allows to
encrypt and sign your data and communication, features a
versatile key managment system as well as access modules for all
kind of public key directories. GnuPG, also known as GPG, is a
command line tool with features for easy integration with other
applications. A wealth of frontend applications and libraries
are available. Version 2 of GnuPG also provides support for
S/MIME.
'';
2013-08-16 21:44:33 +00:00
maintainers = with stdenv.lib.maintainers; [ urkud ];
2012-07-17 01:26:04 +00:00
platforms = stdenv.lib.platforms.all;
};
}