2021-01-17 03:51:22 +00:00
|
|
|
{ fetchurl, fetchpatch, lib, stdenv, pkg-config, libgcrypt, libassuan, libksba
|
2021-10-28 13:48:13 +01:00
|
|
|
, libgpg-error, libiconv, npth, gettext, texinfo, buildPackages
|
2015-03-21 13:01:52 +00:00
|
|
|
|
|
|
|
# Each of the dependencies below are optional.
|
|
|
|
# Gnupg can be built without them at the cost of reduced functionality.
|
2021-11-10 20:47:21 +00:00
|
|
|
, guiSupport ? stdenv.isDarwin, enableMinimal ? false
|
|
|
|
, adns ? null, bzip2 ? null , gnutls ? null , libusb1 ? null , openldap ? null
|
|
|
|
, tpm2-tss ? null
|
|
|
|
, pcsclite ? null , pinentry ? null , readline ? null , sqlite ? null , zlib ? null
|
2014-10-31 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
with lib;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
2019-10-21 00:37:16 +01:00
|
|
|
assert guiSupport -> pinentry != null && enableMinimal == false;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnupg";
|
2022-06-06 19:13:07 +01:00
|
|
|
version = "2.3.6";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnupg/gnupg/${pname}-${version}.tar.bz2";
|
2022-06-06 19:13:07 +01:00
|
|
|
sha256 = "sha256-Iff+L8XC8hQYSrBQl37HqOME5Yv64qsJj+xp+Pq9qcE=";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
|
2019-03-16 15:45:23 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pkg-config texinfo ];
|
2014-10-31 18:47:03 +00:00
|
|
|
buildInputs = [
|
2019-09-14 12:46:49 +01:00
|
|
|
libgcrypt libassuan libksba libiconv npth gettext
|
2021-12-19 04:40:23 +00:00
|
|
|
readline libusb1 gnutls adns openldap zlib bzip2 sqlite
|
|
|
|
] ++ optional (!stdenv.isDarwin) tpm2-tss ;
|
2014-10-31 18:47:03 +00:00
|
|
|
|
2017-02-20 03:30:01 +00:00
|
|
|
patches = [
|
|
|
|
./fix-libusb-include-path.patch
|
2020-02-16 10:17:31 +00:00
|
|
|
./tests-add-test-cases-for-import-without-uid.patch
|
|
|
|
./allow-import-of-previously-known-keys-even-without-UI.patch
|
|
|
|
./accept-subkeys-with-a-good-revocation-but-no-self-sig.patch
|
2022-07-03 02:42:49 +01:00
|
|
|
|
|
|
|
# Patch from upstream 34c649b36013, https://dev.gnupg.org/T6027
|
|
|
|
./CVE-2022-34903-g10-fix-garbled-status-messages-in-NOTATION_DATA.patch
|
2022-07-06 13:06:19 +01:00
|
|
|
|
|
|
|
# Patch for DoS vuln from https://seclists.org/oss-sec/2022/q3/27
|
|
|
|
./v3-0001-Disallow-compressed-signatures-and-certificates.patch
|
2017-02-20 03:30:01 +00:00
|
|
|
];
|
2019-06-30 15:04:22 +01:00
|
|
|
postPatch = ''
|
2022-02-12 18:22:01 +00:00
|
|
|
sed -i 's,\(hkps\|https\)://keyserver.ubuntu.com,hkps://keys.openpgp.org,g' configure configure.ac doc/dirmngr.texi doc/gnupg.info-1
|
2021-11-10 20:47:21 +00:00
|
|
|
'' + lib.optionalString (stdenv.isLinux && pcsclite != null) ''
|
2021-01-15 09:19:50 +00:00
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${lib.getLib pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
2021-01-27 00:28:04 +00:00
|
|
|
'';
|
2016-03-18 09:12:15 +00:00
|
|
|
|
2016-06-17 10:27:59 +01:00
|
|
|
pinentryBinaryPath = pinentry.binaryPath or "bin/pinentry";
|
2019-03-16 15:45:23 +00:00
|
|
|
configureFlags = [
|
2021-10-28 13:48:13 +01:00
|
|
|
"--with-libgpg-error-prefix=${libgpg-error.dev}"
|
2019-03-16 15:45:23 +00:00
|
|
|
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
|
|
|
"--with-libassuan-prefix=${libassuan.dev}"
|
|
|
|
"--with-ksba-prefix=${libksba.dev}"
|
|
|
|
"--with-npth-prefix=${npth}"
|
2021-11-10 20:47:21 +00:00
|
|
|
] ++ optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}"
|
2021-12-19 04:40:23 +00:00
|
|
|
++ optional ( (!stdenv.isDarwin) && (tpm2-tss != null) ) "--with-tss=intel";
|
2019-10-21 00:37:16 +01:00
|
|
|
postInstall = if enableMinimal
|
|
|
|
then ''
|
|
|
|
rm -r $out/{libexec,sbin,share}
|
2021-11-10 20:47:21 +00:00
|
|
|
for f in $(find $out/bin -type f -not -name gpg)
|
2019-10-21 00:37:16 +01:00
|
|
|
do
|
|
|
|
rm $f
|
|
|
|
done
|
|
|
|
'' else ''
|
2017-02-18 10:32:35 +00:00
|
|
|
mkdir -p $out/lib/systemd/user
|
|
|
|
for f in doc/examples/systemd-user/*.{service,socket} ; do
|
|
|
|
substitute $f $out/lib/systemd/user/$(basename $f) \
|
|
|
|
--replace /usr/bin $out/bin
|
|
|
|
done
|
2017-09-10 10:10:24 +01:00
|
|
|
|
|
|
|
# add gpg2 symlink to make sure git does not break when signing commits
|
|
|
|
ln -s $out/bin/gpg $out/bin/gpg2
|
2020-10-08 14:26:03 +01:00
|
|
|
|
|
|
|
# Make libexec tools available in PATH
|
2021-11-10 20:47:21 +00:00
|
|
|
for f in $out/libexec/; do
|
|
|
|
if [[ "$(basename $f)" == "gpg-wks-client" ]]; then continue; fi
|
|
|
|
ln -s $f $out/bin/$(basename $f)
|
|
|
|
done
|
2017-02-18 10:32:35 +00:00
|
|
|
'';
|
|
|
|
|
2021-11-10 20:47:21 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gnupg.org";
|
2021-11-10 20:47:21 +00:00
|
|
|
description = "Modern release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
2014-10-31 18:47:03 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-03-27 20:47:38 +01:00
|
|
|
longDescription = ''
|
|
|
|
The GNU Privacy Guard is the GNU project's complete and free
|
|
|
|
implementation of the OpenPGP standard as defined by RFC4880. GnuPG
|
|
|
|
"modern" (2.1) is the latest development with a lot of new features.
|
|
|
|
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.
|
|
|
|
'';
|
2021-10-14 09:59:33 +01:00
|
|
|
maintainers = with maintainers; [ fpletz vrthra ];
|
2014-10-31 18:47:03 +00:00
|
|
|
platforms = platforms.all;
|
2022-04-01 13:05:22 +01:00
|
|
|
mainProgram = "gpg";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
}
|