nixpkgs/pkgs/development/libraries/gpgme/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
, useGnupg1 ? false, gnupg1 ? null }:
assert useGnupg1 -> gnupg1 != null;
assert !useGnupg1 -> gnupg != null;
let
gpgStorePath = if useGnupg1 then gnupg1 else gnupg;
gpgProgram = if useGnupg1 then "gpg" else "gpg2";
in
stdenv.mkDerivation rec {
2017-01-29 16:18:53 +00:00
name = "gpgme-1.8.0";
2014-09-21 17:27:41 +00:00
src = fetchurl {
2015-01-24 20:56:04 +00:00
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
2017-01-29 16:18:53 +00:00
sha256 = "0csx3qnycwm0n90ql6gs65if5xi4gqyzzy21fxs2xqicghjrfq2r";
};
2014-09-21 17:27:41 +00:00
outputs = [ "out" "dev" "info" ];
2015-10-11 19:49:49 +00:00
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
nativeBuildInputs = [ pkgconfig gnupg ];
configureFlags = [
"--enable-fixed-path=${gpgStorePath}/bin"
];
2014-09-21 17:27:41 +00:00
2016-10-10 18:37:05 +00:00
NIX_CFLAGS_COMPILE =
with stdenv; lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
2015-10-11 19:49:49 +00:00
meta = with stdenv.lib; {
2014-09-21 17:27:41 +00:00
homepage = "http://www.gnupg.org/related_software/gpgme";
description = "Library for making GnuPG easier to use";
2015-10-11 19:49:49 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.fuuzetsu ];
2014-09-21 17:27:41 +00:00
};
}