1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/gpgme/default.nix

53 lines
1.7 KiB
Nix
Raw Normal View History

2017-05-09 16:31:12 +01:00
{ stdenv, fetchurl, fetchpatch, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
, qtbase ? null }:
let inherit (stdenv) lib system; in
stdenv.mkDerivation rec {
name = "gpgme-1.9.0";
2014-09-21 18:27:41 +01:00
src = fetchurl {
2015-01-24 20:56:04 +00:00
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
sha256 = "1ssc0gs02r4fasabk7c6v6r865k2j02mpb5g1vkpbmzsigdzwa8v";
};
2014-09-21 18:27:41 +01:00
2017-05-09 16:31:12 +01:00
patches = [
(fetchpatch {
url = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commitdiff_plain;h=5d4f977dac542340c877fdd4b1304fa8f6e058e6";
sha256 = "0swpxzd3x3b6h2ry2py9j8l0xp3vdw8rixxhgfavzia5p869qyyx";
name = "qgpgme-format-security.patch";
})
];
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;
nativeBuildInputs = [ pkgconfig gnupg ];
configureFlags = [
"--enable-fixed-path=${gnupg}/bin"
];
2014-09-21 18:27:41 +01:00
# https://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
2016-10-10 19:37:05 +01:00
NIX_CFLAGS_COMPILE =
2017-05-09 16:31:12 +01:00
lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
2016-10-10 19:37:05 +01:00
2015-10-11 20:49:49 +01:00
meta = with stdenv.lib; {
homepage = https://gnupg.org/software/gpgme/index.html;
2014-09-21 18:27:41 +01:00
description = "Library for making GnuPG easier to use";
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;
maintainers = with maintainers; [ fuuzetsu primeos ];
2014-09-21 18:27:41 +01:00
};
}