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