···1-{ fetchurl, stdenv, pth }:
2-3-stdenv.mkDerivation rec {
4- name = "libassuan-1.0.5";
5-6- src = fetchurl {
7- url = "mirror://gnupg/libassuan/${name}.tar.bz2";
8- sha256 = "1xar8i5jmah75wa9my4x7vkc5b6nmzd2p6k9kmpdg9hsv04292y5";
9- };
10-11- propagatedBuildInputs = [ pth ];
12-13- doCheck = true;
14-15- meta = {
16- description = "Libassuan, the IPC library used by GnuPG and related software";
17-18- longDescription = ''
19- Libassuan is a small library implementing the so-called Assuan
20- protocol. This protocol is used for IPC between most newer
21- GnuPG components. Both, server and client side functions are
22- provided.
23- '';
24-25- homepage = http://gnupg.org;
26- license = stdenv.lib.licenses.lgpl2Plus;
27- };
28-}