2010-05-19 20:58:56 +00:00
|
|
|
{ fetchurl, stdenv, pth, libgpgerror }:
|
2009-01-12 19:06:35 +00:00
|
|
|
|
2008-01-28 19:43:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-16 07:10:22 +00:00
|
|
|
name = "libassuan-2.4.3";
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2016-07-16 07:10:22 +00:00
|
|
|
sha256 = "0w9bmasln4z8mn16s1is55a06w3nv8jbyal496z5jvr5vcxkm112";
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
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 ];
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-28 19:43:37 +00:00
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
2009-01-12 19:06:35 +00:00
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "IPC library used by GnuPG and related software";
|
2008-01-28 19:43:37 +00:00
|
|
|
|
2009-01-12 19:06:35 +00:00
|
|
|
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.
|
|
|
|
'';
|
2008-01-28 19:43:37 +00:00
|
|
|
|
2009-01-12 19:06:35 +00:00
|
|
|
homepage = http://gnupg.org;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-11-01 22:38:05 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
2008-01-28 19:43:37 +00:00
|
|
|
}
|