2010-05-19 13:59:07 -07:00
|
|
|
{ fetchurl, stdenv, readline, zlib, libgpgerror, pth, libgcrypt, libassuan
|
2015-03-09 15:16:03 -07:00
|
|
|
, libksba, coreutils, libiconv, pcsclite
|
2015-03-21 06:01:52 -07:00
|
|
|
|
2014-09-18 11:55:49 -07:00
|
|
|
# Each of the dependencies below are optional.
|
|
|
|
# Gnupg can be built without them at the cost of reduced functionality.
|
2016-06-17 01:26:41 -07:00
|
|
|
, pinentry ? null, guiSupport ? true
|
2015-03-21 06:01:52 -07:00
|
|
|
, openldap ? null, bzip2 ? null, libusb ? null, curl ? null
|
2005-12-18 14:14:31 -08:00
|
|
|
}:
|
2005-03-22 07:23:20 -08:00
|
|
|
|
2015-03-21 06:01:52 -07:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-06-17 01:26:41 -07:00
|
|
|
assert guiSupport -> pinentry != null;
|
2015-03-21 06:01:52 -07:00
|
|
|
|
2008-09-09 02:06:01 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-31 08:16:46 -07:00
|
|
|
name = "gnupg-2.0.30";
|
2008-09-09 02:06:01 -07:00
|
|
|
|
2005-03-22 07:23:20 -08:00
|
|
|
src = fetchurl {
|
2008-09-09 02:06:01 -07:00
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2016-03-31 08:16:46 -07:00
|
|
|
sha256 = "0wax4cy14hh0h7kg9hj0hjn9424b71z8lrrc5kbsasrn9xd7hag3";
|
2005-03-22 07:23:20 -08:00
|
|
|
};
|
2008-09-09 02:06:01 -07:00
|
|
|
|
2013-06-11 00:30:54 -07:00
|
|
|
buildInputs
|
2014-09-16 15:24:33 -07:00
|
|
|
= [ readline zlib libgpgerror libgcrypt libassuan libksba pth
|
2015-07-16 01:36:29 -07:00
|
|
|
openldap bzip2 libusb curl libiconv ];
|
2010-05-19 13:58:47 -07:00
|
|
|
|
2015-12-27 11:56:52 -08:00
|
|
|
patches = [ ./gpgkey2ssh-20.patch ];
|
|
|
|
|
|
|
|
prePatch = ''
|
2010-05-19 13:59:07 -07:00
|
|
|
find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
|
2015-03-17 17:25:51 -07:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isLinux ''
|
2018-06-21 03:40:15 -07:00
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${stdenv.lib.getLib pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
2015-01-02 12:50:32 -08:00
|
|
|
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
find . -name pcsc-wrapper.c | xargs sed -i 's/typedef unsinged int pcsc_dword_t/typedef unsigned int pcsc_dword_t/'
|
|
|
|
'' + ''
|
2014-08-17 13:17:13 -07:00
|
|
|
patch gl/stdint_.h < ${./clang.patch}
|
2010-05-19 13:58:56 -07:00
|
|
|
'';
|
|
|
|
|
2016-06-17 02:27:59 -07:00
|
|
|
pinentryBinaryPath = pinentry.binaryPath or "bin/pinentry";
|
|
|
|
configureFlags = optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}";
|
2014-09-16 14:32:39 -07:00
|
|
|
|
2015-12-27 11:56:52 -08:00
|
|
|
postConfigure = "substituteAllInPlace tools/gpgkey2ssh.c";
|
|
|
|
|
2010-05-19 13:58:56 -07:00
|
|
|
checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check";
|
2010-05-19 13:58:47 -07:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-14 16:55:21 -08:00
|
|
|
|
2017-03-27 12:47:38 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://gnupg.org;
|
2017-03-27 12:47:38 -07:00
|
|
|
description = "Stable (2.0) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
|
|
|
license = licenses.gpl3Plus;
|
2010-05-19 13:58:47 -07:00
|
|
|
longDescription = ''
|
2017-03-27 12:47:38 -07:00
|
|
|
The GNU Privacy Guard is the GNU project's complete and free
|
|
|
|
implementation of the OpenPGP standard as defined by RFC4880. GnuPG
|
|
|
|
"stable" (2.0) is the current stable version for general use. This is
|
|
|
|
what most users are still using. GnuPG allows to encrypt and sign your
|
|
|
|
data and communication, features a versatile key management 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.
|
2010-05-19 13:58:47 -07:00
|
|
|
'';
|
2017-03-27 12:47:38 -07:00
|
|
|
maintainers = with maintainers; [ roconnor ];
|
|
|
|
platforms = platforms.all;
|
2008-01-14 16:55:21 -08:00
|
|
|
};
|
2005-03-22 07:23:20 -08:00
|
|
|
}
|