2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, 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) lib;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
in
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2010-05-19 21:58:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-06 23:57:40 +00:00
|
|
|
name = "gpgme-${version}";
|
2019-06-17 02:03:24 +01:00
|
|
|
version = "1.13.1";
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2005-12-19 10:34:01 +00:00
|
|
|
src = fetchurl {
|
2015-01-24 20:56:04 +00:00
|
|
|
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
|
2019-06-17 02:03:24 +01:00
|
|
|
sha256 = "0imyjfryvvjdbai454p70zcr95m94j9xnzywrlilqdw2fqi0pqy4";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2014-09-21 18:27:41 +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
|
|
|
|
2019-03-26 18:09:17 +00:00
|
|
|
nativeBuildInputs = [ file pkgconfig gnupg texinfo ]
|
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 ];
|
|
|
|
|
2018-03-06 23:57:40 +00:00
|
|
|
postPatch =''
|
|
|
|
substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file
|
|
|
|
'';
|
2011-06-07 22:50:36 +01:00
|
|
|
|
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
|
|
|
|
2016-10-10 19:37:05 +01:00
|
|
|
NIX_CFLAGS_COMPILE =
|
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
|
|
|
|
++ 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
|
|
|
|
2015-10-11 20:49:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://gnupg.org/software/gpgme/index.html;
|
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;
|
2017-03-30 22:12:00 +01:00
|
|
|
maintainers = with maintainers; [ fuuzetsu primeos ];
|
2014-09-21 18:27:41 +01:00
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|