gnupg2 added
svn path=/nixpkgs/trunk/; revision=10346
This commit is contained in:
parent
cb97c35267
commit
b85bd7a25e
16
pkgs/tools/security/gnupg2/default.nix
Normal file
16
pkgs/tools/security/gnupg2/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user