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 {
|
2012-01-18 20:52:36 +00:00
|
|
|
name = "libassuan-2.0.3";
|
2009-01-12 19:06:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2012-01-18 20:52:36 +00:00
|
|
|
sha256 = "06xckkvxxlx7cj77803m8x58gxksap4k8yhspc5cqsy7fhinimds";
|
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 = {
|
|
|
|
description = "Libassuan, the 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;
|
|
|
|
license = "LGPLv2+";
|
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
|
|
|
}
|