about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libassuan
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libassuan')
-rw-r--r--nixpkgs/pkgs/development/libraries/libassuan/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libassuan/default.nix b/nixpkgs/pkgs/development/libraries/libassuan/default.nix
new file mode 100644
index 000000000000..aa798668f8ea
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libassuan/default.nix
@@ -0,0 +1,42 @@
+{ fetchurl, stdenv, gettext, npth, libgpgerror, buildPackages }:
+
+stdenv.mkDerivation rec {
+  pname = "libassuan";
+  version = "2.5.4";
+
+  src = fetchurl {
+    url = "mirror://gnupg/${pname}/${pname}-${version}.tar.bz2";
+    sha256 = "1w7vnnycq4z7gf4bk38pi4hrb8qrrzgfpz3cd7frwldxnfbfx060";
+  };
+
+  outputs = [ "out" "dev" "info" ];
+  outputBin = "dev"; # libassuan-config
+
+  depsBuildBuild = [ buildPackages.stdenv.cc ];
+  buildInputs = [ npth gettext ];
+
+  configureFlags = [
+    "--with-libgpg-error-prefix=${libgpgerror.dev}"
+  ];
+
+  doCheck = true;
+
+  # Make sure includes are fixed for callers who don't use libassuan-config
+  postInstall = ''
+    sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' $dev/include/assuan.h
+  '';
+
+  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";
+    license = licenses.lgpl2Plus;
+    platforms = platforms.all;
+    maintainers = [ maintainers.erictapen ];
+  };
+}