2008-04-23 21:42:10 +02:00
|
|
|
# remmeber to
|
|
|
|
# echo "pinentry-program `which pinentry-gtk-2`" >> ~/.gnupg/gpg-agent.conf
|
|
|
|
# and install pinentry as well
|
|
|
|
|
2008-04-24 20:31:47 +02:00
|
|
|
args: with args;
|
2008-09-09 11:06:01 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2008-01-28 20:45:57 +01:00
|
|
|
name = "gnupg-2.0.8";
|
2008-09-09 11:06:01 +02:00
|
|
|
|
2008-01-28 20:45:57 +01:00
|
|
|
src = fetchurl {
|
2008-09-09 11:06:01 +02:00
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2008-01-28 20:45:57 +01:00
|
|
|
sha256 = "04v9s92xph1hrhac49yyrgzdwjqshs2zawvjbi3jc2klwjpi1wqn";
|
|
|
|
};
|
2008-09-09 11:06:01 +02:00
|
|
|
|
2008-01-28 20:45:57 +01:00
|
|
|
buildInputs = [ readline openldap bzip2 zlib libgpgerror pth libgcrypt
|
|
|
|
libassuan libksba libusb curl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A free implementation of the OpenPGP standard for encrypting
|
|
|
|
and signing data, v2";
|
|
|
|
homepage = http://www.gnupg.org/;
|
|
|
|
};
|
|
|
|
}
|