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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, gettext, npth, libgpg-error, buildPackages }:
stdenv.mkDerivation rec {
pname = "libassuan";
2021-03-25 16:40:59 +01:00
version = "2.5.5";
src = fetchurl {
url = "mirror://gnupg/${pname}/${pname}-${version}.tar.bz2";
2021-03-25 16:40:59 +01:00
sha256 = "sha256-jowvzJgvnKZ9y7HZXi3HRrFzmkZovCCzo8W+Yy7bNOQ=";
};
outputs = [ "out" "dev" "info" ];
2015-10-11 22:09:01 +02:00
outputBin = "dev"; # libassuan-config
depsBuildBuild = [ buildPackages.stdenv.cc ];
2019-05-16 18:06:10 +02:00
buildInputs = [ npth gettext ];
configureFlags = [
"--with-libgpg-error-prefix=${libgpg-error.dev}"
];
doCheck = true;
2015-05-02 02:47:23 +02:00
# Make sure includes are fixed for callers who don't use libassuan-config
postInstall = ''
sed -i 's,#include <gpg-error.h>,#include "${libgpg-error.dev}/include/gpg-error.h",g' $dev/include/assuan.h
2015-05-02 02:47:23 +02:00
'';
meta = with 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 21:16:04 +01:00
license = licenses.lgpl2Plus;
platforms = platforms.all;
2019-05-18 22:53:48 +02:00
maintainers = [ maintainers.erictapen ];
};
}