2012-11-15 11:18:38 +01:00
|
|
|
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
|
|
|
|
, useGnupg1 ? false, gnupg1 ? null }:
|
2005-12-19 11:34:01 +01:00
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
assert useGnupg1 -> gnupg1 != null;
|
|
|
|
assert !useGnupg1 -> gnupg != null;
|
|
|
|
|
|
|
|
let
|
2016-01-21 01:26:17 +01:00
|
|
|
gpgStorePath = if useGnupg1 then gnupg1 else gnupg;
|
|
|
|
gpgProgram = if useGnupg1 then "gpg" else "gpg2";
|
2012-11-15 11:18:38 +01:00
|
|
|
in
|
2010-05-19 22:58:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-29 17:18:53 +01:00
|
|
|
name = "gpgme-1.8.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-01-29 17:18:53 +01:00
|
|
|
sha256 = "0csx3qnycwm0n90ql6gs65if5xi4gqyzzy21fxs2xqicghjrfq2r";
|
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 = [
|
|
|
|
"--enable-fixed-path=${gpgStorePath}/bin"
|
|
|
|
];
|
2014-09-21 19:27:41 +02:00
|
|
|
|
2016-10-10 20:37:05 +02:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
with stdenv; lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
|
|
|
|
|
2017-02-15 23:13:23 +01:00
|
|
|
AM_CXXFLAGS =
|
|
|
|
with stdenv; lib.optional (isDarwin) "-D_POSIX_C_SOURCE=200809L";
|
|
|
|
|
2015-10-11 21:49:49 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-21 19:27:41 +02:00
|
|
|
homepage = "http://www.gnupg.org/related_software/gpgme";
|
|
|
|
description = "Library for making GnuPG easier to use";
|
2015-10-11 21:49:49 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.fuuzetsu ];
|
2014-09-21 19:27:41 +02:00
|
|
|
};
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|