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 {
|
2014-12-16 23:27:27 +00:00
|
|
|
name = "libassuan-2.2.0";
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2014-12-16 23:27:27 +00:00
|
|
|
sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx";
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
|
|
|
|
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 = ''
|
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|