Add libassuan1 back

opensc needs it

svn path=/nixpkgs/trunk/; revision=21887
This commit is contained in:
Yury G. Kudryashov
2010-05-19 20:59:15 +00:00
parent b7a54122ef
commit 6a0318fead
3 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
{ fetchurl, stdenv, pth }:
stdenv.mkDerivation rec {
name = "libassuan-1.0.5";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
sha256 = "1xar8i5jmah75wa9my4x7vkc5b6nmzd2p6k9kmpdg9hsv04292y5";
};
propagatedBuildInputs = [ pth ];
doCheck = true;
meta = {
description = "Libassuan, the IPC library used by GnuPG and related software";
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;
license = "LGPLv2+";
};
}