2023-02-07 11:18:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, buildPackages
|
|
|
|
, pkg-config, texinfo
|
|
|
|
, gettext, libassuan, libgcrypt, libgpg-error, libiconv, libksba, npth
|
|
|
|
, adns, bzip2, gnutls, libusb1, openldap, readline, sqlite, zlib
|
|
|
|
, enableMinimal ? false
|
2022-09-12 22:22:33 +00:00
|
|
|
, withPcsc ? !enableMinimal, pcsclite
|
2023-02-07 11:18:33 +00:00
|
|
|
, guiSupport ? stdenv.isDarwin, pinentry
|
2022-09-05 07:41:42 +00:00
|
|
|
, withTpm2Tss ? !stdenv.isDarwin && !enableMinimal, tpm2-tss
|
2023-05-12 10:50:00 +00:00
|
|
|
, nixosTests
|
2014-10-31 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
2022-07-29 17:55:55 +00:00
|
|
|
assert guiSupport -> enableMinimal == false;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gnupg";
|
2023-06-26 14:45:19 +00:00
|
|
|
version = "2.4.1";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://gnupg/gnupg/${pname}-${version}.tar.bz2";
|
2023-06-26 14:45:19 +00:00
|
|
|
hash = "sha256-drceWutEO/2RDOnLyCgbYXyDQWh6+2e65FWHeXK1neg=";
|
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 = [
|
2023-02-07 11:18:33 +00:00
|
|
|
gettext libassuan libgcrypt libgpg-error libiconv libksba npth
|
|
|
|
] ++ lib.optionals (!enableMinimal) [
|
|
|
|
adns bzip2 gnutls libusb1 openldap readline sqlite zlib
|
|
|
|
] ++ lib.optionals withTpm2Tss [ 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
|
|
|
|
./accept-subkeys-with-a-good-revocation-but-no-self-sig.patch
|
2023-02-07 11:18:33 +00:00
|
|
|
./24-allow-import-of-previously-known-keys-even-without-UI.patch
|
2022-07-06 12:06:19 +00: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
|
|
|
];
|
2023-02-07 11:18:33 +00:00
|
|
|
|
2019-06-30 14:04:22 +00: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
|
2023-02-07 11:18:33 +00:00
|
|
|
'' + lib.optionalString (stdenv.isLinux && withPcsc) ''
|
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${lib.getLib pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
|
|
|
'';
|
2016-03-18 09:12:15 +00:00
|
|
|
|
2019-03-16 15:45:23 +00:00
|
|
|
configureFlags = [
|
2023-02-27 23:14:47 +00:00
|
|
|
"--sysconfdir=/etc"
|
2021-10-28 12:48:13 +00: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}"
|
2023-02-07 11:18:33 +00:00
|
|
|
]
|
2023-04-16 05:27:33 +00:00
|
|
|
++ lib.optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentry.binaryPath or "bin/pinentry"}"
|
2022-11-15 12:35:20 +00:00
|
|
|
++ lib.optional withTpm2Tss "--with-tss=intel"
|
|
|
|
++ lib.optional stdenv.isDarwin "--disable-ccid-driver";
|
2023-02-07 11:18:33 +00:00
|
|
|
|
2019-10-20 23:37:16 +00: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-20 23:37:16 +00:00
|
|
|
do
|
|
|
|
rm $f
|
|
|
|
done
|
|
|
|
'' else ''
|
2017-09-10 09:10:24 +00: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 13:26:03 +00: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
|
2023-02-07 11:18:33 +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;
|
|
|
|
|
2023-06-11 22:34:59 +00:00
|
|
|
passthru.tests = nixosTests.gnupg;
|
2023-02-02 17:21:46 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://gnupg.org";
|
2023-05-07 21:02:07 +00:00
|
|
|
changelog = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=${pname}.git;a=blob;f=NEWS;hb=refs/tags/${pname}-${version}";
|
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 19:47:38 +00: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 08:59:33 +00:00
|
|
|
maintainers = with maintainers; [ fpletz vrthra ];
|
2014-10-31 18:47:03 +00:00
|
|
|
platforms = platforms.all;
|
2022-04-01 12:05:22 +00:00
|
|
|
mainProgram = "gpg";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
}
|