3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libassuan/default.nix

30 lines
771 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pth, libgpgerror }:
stdenv.mkDerivation rec {
2014-12-16 23:27:27 +00:00
name = "libassuan-2.2.0";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
2014-12-16 23:27:27 +00:00
sha256 = "1ikf9whfi7rg71qa610ynyv12qrw20zkn7zxgvvr9dp41gbqxxbx";
};
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;
};
}