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