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 {
|
2010-05-19 22:58:56 +02:00
|
|
|
name = "libassuan-2.0.0";
|
2009-01-12 20:06:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
2010-05-19 22:58:56 +02:00
|
|
|
sha256 = "13vzs4jxscnlskwzd3wpqwnfb5f0hwqc75rbi8j9f42bs6q08apx";
|
2009-01-12 20:06:35 +01:00
|
|
|
};
|
|
|
|
|
2010-05-19 22:58:56 +02:00
|
|
|
propagatedBuildInputs = [ pth libgpgerror ];
|
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+";
|
|
|
|
};
|
2008-01-28 20:43:37 +01:00
|
|
|
}
|