2017-03-30 23:12:00 +02:00
|
|
|
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan }:
|
2005-12-19 11:34:01 +01:00
|
|
|
|
2010-05-19 22:58:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-30 23:12:00 +02:00
|
|
|
name = "gpgme-1.9.0";
|
2014-09-21 19:27:41 +02:00
|
|
|
|
2005-12-19 11:34:01 +01:00
|
|
|
src = fetchurl {
|
2015-01-24 21:56:04 +01:00
|
|
|
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
|
2017-03-30 23:12:00 +02:00
|
|
|
sha256 = "1ssc0gs02r4fasabk7c6v6r865k2j02mpb5g1vkpbmzsigdzwa8v";
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
2014-09-21 19:27:41 +02:00
|
|
|
|
2017-03-21 23:50:53 +01:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
|
|
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
2011-06-07 23:50:36 +02:00
|
|
|
|
2013-06-24 08:31:46 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig gnupg ];
|
2011-06-07 23:50:36 +02:00
|
|
|
|
2016-01-21 01:26:17 +01:00
|
|
|
configureFlags = [
|
2017-03-30 23:12:00 +02:00
|
|
|
"--enable-fixed-path=${gnupg}/bin"
|
2016-01-21 01:26:17 +01:00
|
|
|
];
|
2014-09-21 19:27:41 +02:00
|
|
|
|
2017-03-30 23:12:00 +02:00
|
|
|
# https://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
|
2016-10-10 20:37:05 +02:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
with stdenv; lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
|
|
|
|
|
2015-10-11 21:49:49 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-30 23:12:00 +02:00
|
|
|
homepage = "https://gnupg.org/software/gpgme/index.html";
|
2014-09-21 19:27:41 +02:00
|
|
|
description = "Library for making GnuPG easier to use";
|
2017-03-30 23:12:00 +02: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 21:49:49 +02:00
|
|
|
platforms = platforms.unix;
|
2017-03-30 23:12:00 +02:00
|
|
|
maintainers = with maintainers; [ fuuzetsu primeos ];
|
2014-09-21 19:27:41 +02:00
|
|
|
};
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|