summary refs log tree commit diff
path: root/pkgs/development/libraries/libnetfilter_cthelper
diff options
context:
space:
mode:
authorambrop7@gmail.com <Ambroz Bizjak>2014-11-08 23:04:49 +0100
committerambrop7@gmail.com <Ambroz Bizjak>2014-11-08 23:06:09 +0100
commit085b5ec48c5a76cb6945b1650f1d78cc53af7bca (patch)
tree2ec797231154882e519239763211ecf608c707d0 /pkgs/development/libraries/libnetfilter_cthelper
parent9b4ba66ac3d1ac3dba325fcb1db45c8f7a57e103 (diff)
downloadnixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar.gz
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar.bz2
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar.lz
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar.xz
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.tar.zst
nixpkgs-085b5ec48c5a76cb6945b1650f1d78cc53af7bca.zip
Add conntrack-tools and missing dependencies.
Diffstat (limited to 'pkgs/development/libraries/libnetfilter_cthelper')
-rw-r--r--pkgs/development/libraries/libnetfilter_cthelper/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libnetfilter_cthelper/default.nix b/pkgs/development/libraries/libnetfilter_cthelper/default.nix
new file mode 100644
index 00000000000..c4648a56f3f
--- /dev/null
+++ b/pkgs/development/libraries/libnetfilter_cthelper/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, pkgconfig, libmnl }:
+
+stdenv.mkDerivation rec {
+  name = "libnetfilter_cthelper-1.0.0";
+
+  src = fetchurl {
+    url = "http://netfilter.org/projects/libnetfilter_cthelper/files/${name}.tar.bz2";
+    sha256 = "07618e71c4d9a6b6b3dc1986540486ee310a9838ba754926c7d14a17d8fccf3d";
+  };
+
+  buildInputs = [ pkgconfig libmnl ];
+
+  meta = {
+    description = "Userspace library that provides the programming interface to the user-space connection tracking helper infrastructure.";
+    longDescription = ''
+      libnetfilter_cthelper is the userspace library that provides the programming interface
+      to the user-space helper infrastructure available since Linux kernel 3.6. With this
+      library, you register, configure, enable and disable user-space helpers. This library
+      is used by conntrack-tools.
+    '';
+    homepage = http://www.netfilter.org/projects/libnetfilter_cthelper/;
+    license = stdenv.lib.licenses.gpl2Plus;
+    platforms = stdenv.lib.platforms.linux;
+  };
+}