gnupg2 added

svn path=/nixpkgs/trunk/; revision=10346
This commit is contained in:
Yury G. Kudryashov 2008-01-28 19:45:57 +00:00
parent cb97c35267
commit b85bd7a25e
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,16 @@
args: with args;
stdenv.mkDerivation {
name = "gnupg-2.0.8";
src = fetchurl {
url = ftp://ftp.cert.dfn.de/pub/tools/crypt/gcrypt/gnupg/gnupg-2.0.8.tar.bz2;
sha256 = "04v9s92xph1hrhac49yyrgzdwjqshs2zawvjbi3jc2klwjpi1wqn";
};
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/;
};
}

View file

@ -495,6 +495,11 @@ rec {
ideaSupport = true; # enable for IDEA crypto support
};
gnupg2 = import ../tools/security/gnupg2 {
inherit fetchurl stdenv readline openldap bzip2 zlib libgpgerror pth
libgcrypt libassuan libksba libusb curl;
};
gnuplot = import ../tools/graphics/gnuplot {
inherit fetchurl stdenv zlib gd texinfo;
};