nixpkgs/pkgs/development/libraries/libassuan/default.nix

36 lines
1.0 KiB
Nix
Raw Normal View History

2018-02-05 23:16:04 +03:00
{ fetchurl, stdenv, gettext, pth, libgpgerror }:
stdenv.mkDerivation rec {
name = "libassuan-2.5.2";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
sha256 = "1rw8nw6fx6ppxga6m4cqcp898lnlzf7vn3s5c2lzfxg3fzr1nswq";
};
outputs = [ "out" "dev" "info" ];
2015-10-11 23:09:01 +03:00
outputBin = "dev"; # libassuan-config
buildInputs = [ libgpgerror pth gettext];
doCheck = true;
2015-05-02 03:47:23 +03:00
# Make sure includes are fixed for callers who don't use libassuan-config
postInstall = ''
2015-10-11 23:09:01 +03:00
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' $dev/include/assuan.h
2015-05-02 03:47:23 +03:00
'';
2018-02-05 23:16:04 +03:00
meta = with stdenv.lib; {
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;
2018-02-05 23:16:04 +03:00
license = licenses.lgpl2Plus;
platforms = platforms.all;
};
}