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

38 lines
1.0 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pth, libgpgerror }:
stdenv.mkDerivation rec {
2016-07-16 07:10:22 +00:00
name = "libassuan-2.4.3";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
2016-07-16 07:10:22 +00:00
sha256 = "0w9bmasln4z8mn16s1is55a06w3nv8jbyal496z5jvr5vcxkm112";
};
outputs = [ "out" "dev" "info" ];
2015-10-11 20:09:01 +00:00
outputBin = "dev"; # libassuan-config
2015-05-02 00:47:23 +00:00
buildInputs = [ libgpgerror pth ];
doCheck = true;
2015-05-02 00:47:23 +00:00
# Make sure includes are fixed for callers who don't use libassuan-config
postInstall = ''
2015-10-11 20:09:01 +00:00
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' $dev/include/assuan.h
2015-05-02 00:47:23 +00:00
'';
meta = {
description = "IPC library used by GnuPG and related software";
longDescription = ''
Libassuan is a small library implementing the so-called Assuan
protocol. This protocol is used for IPC between most newer
GnuPG components. Both, server and client side functions are
provided.
'';
homepage = http://gnupg.org;
license = stdenv.lib.licenses.lgpl2Plus;
platforms = stdenv.lib.platforms.all;
};
}