2022-01-17 15:01:55 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
|
|
|
, libgpg-error
|
|
|
|
, gnupg
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, pth
|
|
|
|
, libassuan
|
|
|
|
, file
|
|
|
|
, which
|
|
|
|
, ncurses
|
2018-09-09 00:04:55 +01:00
|
|
|
, texinfo
|
2019-03-20 20:36:30 +00:00
|
|
|
, buildPackages
|
2018-03-06 23:57:40 +00:00
|
|
|
, qtbase ? null
|
2022-01-17 15:01:55 +00:00
|
|
|
, pythonSupport ? false
|
|
|
|
, swig2 ? null
|
|
|
|
, python ? null
|
2022-05-27 17:57:16 +01:00
|
|
|
# only for passthru.tests
|
|
|
|
, libsForQt5
|
|
|
|
, python3
|
2018-03-06 23:57:40 +00:00
|
|
|
}:
|
2018-08-20 20:11:29 +01:00
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
in
|
2010-05-19 21:58:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gpgme";
|
2022-05-27 00:56:07 +01:00
|
|
|
version = "1.17.1";
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2005-12-19 10:34:01 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnupg/gpgme/${pname}-${version}.tar.bz2";
|
2022-05-27 00:56:07 +01:00
|
|
|
hash = "sha256-cR6r9d1mG5sEvp7cms4qe8Ax9r2dN6do0C0O/e8Qj18=";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2021-07-21 19:12:38 +01:00
|
|
|
patches = [
|
2021-08-18 21:57:18 +01:00
|
|
|
# https://dev.gnupg.org/rMc4cf527ea227edb468a84bf9b8ce996807bd6992
|
|
|
|
./fix_gpg_list_keys.diff
|
2020-04-15 14:33:19 +01:00
|
|
|
# https://lists.gnupg.org/pipermail/gnupg-devel/2020-April/034591.html
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-Fix-python-tests-on-non-Linux.patch";
|
|
|
|
url = "https://lists.gnupg.org/pipermail/gnupg-devel/attachments/20200415/f7be62d1/attachment.obj";
|
|
|
|
sha256 = "00d4sxq63601lzdp2ha1i8fvybh7dzih4531jh8bx07fab3sw65g";
|
|
|
|
})
|
2022-02-19 23:03:50 +00:00
|
|
|
# Support Python 3.10 version detection without distutils, https://dev.gnupg.org/D545
|
|
|
|
./python-310-detection-without-distutils.patch
|
|
|
|
# Find correct version string for Python >= 3.10, https://dev.gnupg.org/D546
|
|
|
|
./python-find-version-string-above-310.patch
|
2022-07-07 10:01:17 +01:00
|
|
|
# Fix a test after disallowing compressed signatures in gpg (PR #180336)
|
|
|
|
./test_t-verify_double-plaintext.patch
|
|
|
|
|
2020-04-15 14:33:19 +01:00
|
|
|
# Disable python tests on Darwin as they use gpg (see configureFlags below)
|
2021-01-08 04:20:00 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin ./disable-python-tests.patch
|
2022-01-17 15:01:55 +00:00
|
|
|
# Fix _AC_UNDECLARED_WARNING for autoconf>=2.70
|
|
|
|
# See https://lists.gnupg.org/pipermail/gnupg-devel/2020-November/034643.html
|
2021-01-08 04:20:00 +00:00
|
|
|
++ lib.optional stdenv.cc.isClang ./fix-clang-autoconf-undeclared-warning.patch;
|
2020-04-02 05:35:36 +01:00
|
|
|
|
2017-03-21 22:50:53 +00:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2022-01-17 15:01:55 +00:00
|
|
|
|
2017-03-21 22:50:53 +00:00
|
|
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
|
|
|
|
2022-01-17 15:01:55 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
gnupg
|
|
|
|
pkg-config
|
|
|
|
texinfo
|
|
|
|
] ++ lib.optionals pythonSupport [
|
|
|
|
ncurses
|
|
|
|
python
|
|
|
|
swig2
|
|
|
|
which
|
|
|
|
];
|
2011-06-07 22:50:36 +01:00
|
|
|
|
2022-01-17 15:01:55 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
libassuan
|
|
|
|
libgpg-error
|
|
|
|
pth
|
2022-03-15 08:18:36 +00:00
|
|
|
] ++ lib.optionals (qtbase != null) [
|
2022-01-17 15:01:55 +00:00
|
|
|
qtbase
|
|
|
|
];
|
2018-03-06 23:57:40 +00:00
|
|
|
|
2022-01-17 15:01:55 +00:00
|
|
|
checkInputs = [
|
|
|
|
which
|
|
|
|
];
|
|
|
|
|
|
|
|
depsBuildBuild = [
|
|
|
|
buildPackages.stdenv.cc
|
|
|
|
];
|
2019-03-20 20:36:30 +00:00
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2016-01-21 00:26:17 +00:00
|
|
|
configureFlags = [
|
2017-03-30 22:12:00 +01:00
|
|
|
"--enable-fixed-path=${gnupg}/bin"
|
2021-09-04 21:05:03 +01:00
|
|
|
"--with-libgpg-error-prefix=${libgpg-error.dev}"
|
2019-03-20 20:36:30 +00:00
|
|
|
"--with-libassuan-prefix=${libassuan.dev}"
|
2019-06-07 21:03:51 +01:00
|
|
|
] ++ lib.optional pythonSupport "--enable-languages=python"
|
|
|
|
# Tests will try to communicate with gpg-agent instance via a UNIX socket
|
|
|
|
# which has a path length limit. Nix on darwin is using a build directory
|
|
|
|
# that already has quite a long path and the resulting socket path doesn't
|
|
|
|
# fit in the limit. https://github.com/NixOS/nix/pull/1085
|
2022-01-17 15:01:55 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ "--disable-gpg-test" ];
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2019-10-30 00:40:49 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString (
|
2017-05-23 15:51:38 +01:00
|
|
|
# qgpgme uses Q_ASSERT which retains build inputs at runtime unless
|
|
|
|
# debugging is disabled
|
|
|
|
lib.optional (qtbase != null) "-DQT_NO_DEBUG"
|
|
|
|
# https://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
|
2022-06-07 15:34:29 +01:00
|
|
|
++ lib.optional stdenv.hostPlatform.is32bit "-D_FILE_OFFSET_BITS=64"
|
2022-01-17 15:01:55 +00:00
|
|
|
);
|
2018-08-08 19:32:50 +01:00
|
|
|
|
2018-10-13 03:45:02 +01:00
|
|
|
doCheck = true;
|
2018-08-08 19:32:50 +01:00
|
|
|
|
2022-05-27 17:57:16 +01:00
|
|
|
passthru.tests = {
|
|
|
|
python = python3.pkgs.gpgme;
|
|
|
|
qt = libsForQt5.qgpgme;
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gnupg.org/software/gpgme/index.html";
|
2022-05-27 00:56:07 +01:00
|
|
|
changelog = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;f=NEWS;hb=gpgme-${version}";
|
2014-09-21 18:27:41 +01:00
|
|
|
description = "Library for making GnuPG easier to use";
|
2017-03-30 22:12:00 +01:00
|
|
|
longDescription = ''
|
|
|
|
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
|
|
|
|
easier for applications. It provides a High-Level Crypto API for
|
|
|
|
encryption, decryption, signing, signature verification and key
|
|
|
|
management.
|
|
|
|
'';
|
|
|
|
license = with licenses; [ lgpl21Plus gpl3Plus ];
|
2015-10-11 20:49:49 +01:00
|
|
|
platforms = platforms.unix;
|
2022-05-27 00:56:07 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2014-09-21 18:27:41 +01:00
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|