2021-01-27 05:44:43 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch
|
2021-01-19 06:50:56 +00:00
|
|
|
, autoreconfHook, libgpgerror, gnupg, pkg-config, glib, pth, libassuan
|
2018-09-07 09:58:11 +01:00
|
|
|
, 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
|
2018-09-07 09:58:11 +01:00
|
|
|
, pythonSupport ? false, swig2 ? null, python ? null
|
2018-03-06 23:57:40 +00:00
|
|
|
}:
|
2017-05-09 16:31:12 +01:00
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
let
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
in
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2010-05-19 21:58:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gpgme";
|
2021-01-10 12:15:03 +00:00
|
|
|
version = "1.15.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";
|
2021-01-10 12:15:03 +00:00
|
|
|
sha256 = "1bg13l5s8x9p1v0jyv29n84bay27pflindpzjsc9gj7i4wdkrg7f";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2020-04-02 05:35:36 +01:00
|
|
|
patches = [
|
2020-07-19 10:44:08 +01:00
|
|
|
(fetchpatch { # gpg: Send --with-keygrip when listing keys
|
2020-04-02 05:35:36 +01:00
|
|
|
name = "c4cf527ea227edb468a84bf9b8ce996807bd6992.patch";
|
|
|
|
url = "http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=patch;h=c4cf527ea227edb468a84bf9b8ce996807bd6992";
|
2020-06-02 21:44:52 +01:00
|
|
|
sha256 = "0y0b0lb2nq5p9kx13b59b2jaz157mvflliw1qdvg1v1hynvgb8m4";
|
2020-04-02 05:35:36 +01:00
|
|
|
})
|
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";
|
|
|
|
})
|
|
|
|
# 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
|
|
|
|
# Fix _AC_UNDECLARED_WARNING for autoconf≥2.70. See https://lists.gnupg.org/pipermail/gnupg-devel/2020-November/034643.html
|
|
|
|
++ 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" ];
|
|
|
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
|
|
|
|
2017-05-09 16:31:12 +01:00
|
|
|
propagatedBuildInputs =
|
|
|
|
[ libgpgerror glib libassuan pth ]
|
|
|
|
++ lib.optional (qtbase != null) qtbase;
|
2011-06-07 22:50:36 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gnupg texinfo autoreconfHook ]
|
2018-09-07 09:58:11 +01:00
|
|
|
++ lib.optionals pythonSupport [ python swig2 which ncurses ];
|
2018-03-06 23:57:40 +00:00
|
|
|
|
2019-03-20 20:36:30 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
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"
|
2018-03-06 23:57:40 +00:00
|
|
|
"--with-libgpg-error-prefix=${libgpgerror.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
|
|
|
|
++ 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
|
2019-10-30 00:40:49 +00:00
|
|
|
++ lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64");
|
2016-10-10 19:37:05 +01:00
|
|
|
|
2018-08-08 19:32:50 +01:00
|
|
|
checkInputs = [ which ];
|
|
|
|
|
2018-10-13 03:45:02 +01:00
|
|
|
doCheck = true;
|
2018-08-08 19:32:50 +01:00
|
|
|
|
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";
|
2020-07-19 10:44:08 +01:00
|
|
|
changelog = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=blob;f=NEWS;hb=refs/tags/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;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with maintainers; [ primeos ];
|
2014-09-21 18:27:41 +01:00
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|