2010-05-19 22:58:47 +02:00
|
|
|
# Remember to install Pinentry and
|
|
|
|
# 'echo "pinentry-program `which pinentry-gtk-2`" >> ~/.gnupg/gpg-agent.conf'.
|
2008-07-07 13:50:21 +02:00
|
|
|
|
2010-05-19 22:59:07 +02:00
|
|
|
{ fetchurl, stdenv, readline, zlib, libgpgerror, pth, libgcrypt, libassuan
|
2013-06-13 06:17:27 +02:00
|
|
|
, libksba, coreutils, libiconvOrEmpty
|
2013-06-11 09:30:54 +02:00
|
|
|
, useLdap ? true, openldap ? null, useBzip2 ? true, bzip2 ? null
|
|
|
|
, useUsb ? true, libusb ? null, useCurl ? true, curl ? null
|
2005-12-18 23:14:31 +01:00
|
|
|
}:
|
2005-03-22 16:23:20 +01:00
|
|
|
|
2010-05-19 22:58:47 +02:00
|
|
|
assert useLdap -> (openldap != null);
|
|
|
|
assert useBzip2 -> (bzip2 != null);
|
|
|
|
assert useUsb -> (libusb != null);
|
|
|
|
assert useCurl -> (curl != null);
|
2010-02-10 20:03:48 +01:00
|
|
|
|
2008-09-09 11:06:01 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-21 15:02:55 +02:00
|
|
|
name = "gnupg-2.0.21";
|
2008-09-09 11:06:01 +02:00
|
|
|
|
2005-03-22 16:23:20 +01:00
|
|
|
src = fetchurl {
|
2008-09-09 11:06:01 +02:00
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2013-08-21 15:02:55 +02:00
|
|
|
sha256 = "1xgf1q1phdawk6y66haaqcvfnlsqk12jmjin1m2d5x6fqw18kpq0";
|
2005-03-22 16:23:20 +01:00
|
|
|
};
|
2008-09-09 11:06:01 +02:00
|
|
|
|
2013-06-11 09:30:54 +02:00
|
|
|
buildInputs
|
2013-06-13 06:17:27 +02:00
|
|
|
= [ readline zlib libgpgerror libgcrypt libassuan libksba pth ]
|
|
|
|
++ libiconvOrEmpty
|
2010-05-19 22:58:47 +02:00
|
|
|
++ stdenv.lib.optional useLdap openldap
|
|
|
|
++ stdenv.lib.optional useBzip2 bzip2
|
|
|
|
++ stdenv.lib.optional useUsb libusb
|
|
|
|
++ stdenv.lib.optional useCurl curl;
|
|
|
|
|
2010-05-19 22:58:56 +02:00
|
|
|
patchPhase = ''
|
2010-05-19 22:59:07 +02:00
|
|
|
find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
|
2013-06-11 09:30:54 +02:00
|
|
|
find . -name pcsc-wrapper.c | xargs sed -i 's/typedef unsinged int pcsc_dword_t/typedef unsigned int pcsc_dword_t/'
|
2010-05-19 22:58:56 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check";
|
2010-05-19 22:58:47 +02:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-15 01:55:21 +01:00
|
|
|
|
|
|
|
meta = {
|
2013-05-22 12:27:08 +02:00
|
|
|
homepage = "http://gnupg.org/";
|
2010-05-19 22:58:47 +02:00
|
|
|
description = "GNU Privacy Guard (GnuPG), GNU Project's implementation of the OpenPGP standard";
|
2013-05-22 12:27:08 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-05-19 22:58:47 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ urkud ];
|
2012-07-17 03:26:04 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-01-15 01:55:21 +01:00
|
|
|
};
|
2005-03-22 16:23:20 +01:00
|
|
|
}
|