70e1cd9c10
svn path=/nixpkgs/trunk/; revision=16129
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
# Remember to install Pinentry and
|
|
# 'echo "pinentry-program `which pinentry-gtk-2`" >> ~/.gnupg/gpg-agent.conf'.
|
|
|
|
{ fetchurl, stdenv, readline, openldap, bzip2, zlib, libgpgerror
|
|
, pth, libgcrypt, libassuan, libksba, libusb, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnupg-2.0.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
|
sha256 = "1klw3m32s6d81qkslin4pibb2f84yz8l6n6fkwfdxyhrql2f2cwn";
|
|
};
|
|
|
|
buildInputs = [ readline openldap bzip2 zlib libgpgerror pth libgcrypt
|
|
libassuan libksba libusb curl ];
|
|
|
|
patchPhase = ''
|
|
for file in tests/pkits/*
|
|
do
|
|
if [ -f "$file" ]
|
|
then
|
|
sed -i "$file" -es'|/bin/pwd|pwd|g'
|
|
fi
|
|
done
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "GNU Privacy Guard (GnuPG), GNU Project's implementation of the OpenPGP standard";
|
|
|
|
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.
|
|
'';
|
|
|
|
homepage = http://gnupg.org/;
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
};
|
|
}
|