1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/development/libraries/libassuan/default.nix

30 lines
771 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pth, libgpgerror }:
stdenv.mkDerivation rec {
2014-02-04 10:31:10 +00:00
name = "libassuan-2.1.1";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
2014-02-04 10:31:10 +00:00
sha256 = "1783nb0b6nr9yjhb5wfh8ykc5w89f4anppz1kz9913mqg5vxdqi3";
};
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;
};
}