2012-11-15 10:18:38 +00:00
|
|
|
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
|
|
|
|
, useGnupg1 ? false, gnupg1 ? null }:
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2012-11-15 10:18:38 +00:00
|
|
|
assert useGnupg1 -> gnupg1 != null;
|
|
|
|
assert !useGnupg1 -> gnupg != null;
|
|
|
|
|
|
|
|
let
|
2016-01-21 00:26:17 +00:00
|
|
|
gpgStorePath = if useGnupg1 then gnupg1 else gnupg;
|
|
|
|
gpgProgram = if useGnupg1 then "gpg" else "gpg2";
|
2012-11-15 10:18:38 +00:00
|
|
|
in
|
2010-05-19 21:58:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-24 18:13:34 +01:00
|
|
|
name = "gpgme-1.7.0";
|
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";
|
2016-09-24 18:13:34 +01:00
|
|
|
sha256 = "0j6capvv6lcr6p763lr2ygzkzkj5lqm7fnbfc1xaygib1znmzxbi";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-11 20:49:49 +01:00
|
|
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
|
|
|
|
2012-11-15 10:18:38 +00:00
|
|
|
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
2011-06-07 22:50:36 +01:00
|
|
|
|
2013-06-24 07:31:46 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gnupg ];
|
2011-06-07 22:50:36 +01:00
|
|
|
|
2016-01-21 00:26:17 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gpg=${gpgStorePath}/bin/${gpgProgram}"
|
|
|
|
"--enable-fixed-path=${gpgStorePath}/bin"
|
|
|
|
];
|
2014-09-21 18:27:41 +01:00
|
|
|
|
2015-10-11 20:49:49 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-21 18:27:41 +01:00
|
|
|
homepage = "http://www.gnupg.org/related_software/gpgme";
|
|
|
|
description = "Library for making GnuPG easier to use";
|
2015-10-11 20:49:49 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.fuuzetsu ];
|
2014-09-21 18:27:41 +01:00
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|