2019-05-16 17:06:10 +01:00
|
|
|
{ fetchurl, stdenv, gettext, npth, libgpgerror, buildPackages }:
|
2009-01-12 19:06:35 +00:00
|
|
|
|
2008-01-28 19:43:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-21 20:51:08 +00:00
|
|
|
pname = "libassuan";
|
|
|
|
version = "2.5.3";
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-21 20:51:08 +00:00
|
|
|
url = "mirror://gnupg/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "00p7cpvzf0q3qwcgg51r9d0vbab4qga2xi8wpk2fgd36710b1g4i";
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-11 21:09:01 +01:00
|
|
|
outputBin = "dev"; # libassuan-config
|
|
|
|
|
2019-03-16 15:42:32 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2019-05-16 17:06:10 +01:00
|
|
|
buildInputs = [ npth gettext ];
|
2019-03-16 15:42:32 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-libgpg-error-prefix=${libgpgerror.dev}"
|
|
|
|
];
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-28 19:43:37 +00:00
|
|
|
|
2015-05-02 01:47:23 +01:00
|
|
|
# Make sure includes are fixed for callers who don't use libassuan-config
|
|
|
|
postInstall = ''
|
2015-10-11 21:09:01 +01:00
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' $dev/include/assuan.h
|
2015-05-02 01:47:23 +01:00
|
|
|
'';
|
|
|
|
|
2018-02-05 20:16:04 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "IPC library used by GnuPG and related software";
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://gnupg.org;
|
2018-02-05 20:16:04 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2019-05-18 21:53:48 +01:00
|
|
|
maintainers = [ maintainers.erictapen ];
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
2008-01-28 19:43:37 +00:00
|
|
|
}
|