2010-05-19 21:58:56 +01: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-02-04 10:31:10 +00:00
|
|
|
name = "libassuan-2.1.1";
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2014-02-04 10:31:10 +00:00
|
|
|
sha256 = "1783nb0b6nr9yjhb5wfh8ykc5w89f4anppz1kz9913mqg5vxdqi3";
|
2009-01-12 19:06:35 +00:00
|
|
|
};
|
|
|
|
|
2012-11-15 10:18:38 +00:00
|
|
|
propagatedBuildInputs = [ libgpgerror pth ];
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-28 19:43:37 +00:00
|
|
|
|
2009-01-12 19:06:35 +00:00
|
|
|
meta = {
|
2014-08-24 15:21:08 +01: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 05:19:00 +01: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
|
|
|
}
|