30 lines
771 B
Nix
30 lines
771 B
Nix
{ fetchurl, stdenv, pth, libgpgerror }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libassuan-2.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
|
sha256 = "0yxp3mdsxg75aj3h2r94vzad5i1y2mh0df9pv76ggals6k4sgy1r";
|
|
};
|
|
|
|
propagatedBuildInputs = [ libgpgerror pth ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "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 = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|