2010-05-19 22:58:56 +02:00
|
|
|
{ fetchurl, stdenv, pth, libgpgerror }:
|
2009-01-12 20:06:35 +01:00
|
|
|
|
2008-01-28 20:43:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-01-18 21:52:36 +01:00
|
|
|
name = "libassuan-2.0.3";
|
2009-01-12 20:06:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2012-01-18 21:52:36 +01:00
|
|
|
sha256 = "06xckkvxxlx7cj77803m8x58gxksap4k8yhspc5cqsy7fhinimds";
|
2009-01-12 20:06:35 +01:00
|
|
|
};
|
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
propagatedBuildInputs = [ libgpgerror pth ];
|
2009-01-12 20:06:35 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2008-01-28 20:43:37 +01:00
|
|
|
|
2009-01-12 20:06:35 +01:00
|
|
|
meta = {
|
|
|
|
description = "Libassuan, the IPC library used by GnuPG and related software";
|
2008-01-28 20:43:37 +01:00
|
|
|
|
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.
|
|
|
|
'';
|
2008-01-28 20:43:37 +01:00
|
|
|
|
2009-01-12 20:06:35 +01:00
|
|
|
homepage = http://gnupg.org;
|
|
|
|
license = "LGPLv2+";
|
2011-11-01 23:38:05 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2009-01-12 20:06:35 +01:00
|
|
|
};
|
2008-01-28 20:43:37 +01:00
|
|
|
}
|