GnuPG 2.0.10.
svn path=/nixpkgs/trunk/; revision=13749
This commit is contained in:
parent
0d579bfcda
commit
abfb6c220d
@ -1,22 +1,37 @@
|
|||||||
# remmeber to
|
# Remember to install Pinentry and
|
||||||
# echo "pinentry-program `which pinentry-gtk-2`" >> ~/.gnupg/gpg-agent.conf
|
# 'echo "pinentry-program `which pinentry-gtk-2`" >> ~/.gnupg/gpg-agent.conf'.
|
||||||
# and install pinentry as well
|
|
||||||
|
{ fetchurl, stdenv, readline, openldap, bzip2, zlib, libgpgerror
|
||||||
|
, pth, libgcrypt, libassuan, libksba, libusb, curl }:
|
||||||
|
|
||||||
args: with args;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnupg-2.0.8";
|
name = "gnupg-2.0.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
||||||
sha256 = "04v9s92xph1hrhac49yyrgzdwjqshs2zawvjbi3jc2klwjpi1wqn";
|
sha256 = "08yz2kgcnphjml5mhq4bm4dg64jrz79p97nlrlb88ym6p6ybg26l";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ readline openldap bzip2 zlib libgpgerror pth libgcrypt
|
buildInputs = [ readline openldap bzip2 zlib libgpgerror pth libgcrypt
|
||||||
libassuan libksba libusb curl ];
|
libassuan libksba libusb curl ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A free implementation of the OpenPGP standard for encrypting
|
description = "GNU Privacy Guard (GnuPG), GNU Project's implementation of the OpenPGP standard";
|
||||||
and signing data, v2";
|
|
||||||
homepage = http://www.gnupg.org/;
|
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/;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user