about summary refs log tree commit diff
path: root/pkgs/development/libraries/libnfnetlink
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2012-10-13 18:53:17 +0200
committerMathijs Kwik <mathijs@bluescreen303.nl>2012-10-13 20:23:36 +0200
commitd5e4b92f22e2be41e63e02c07d26980e979b24e2 (patch)
tree1b3f96269fb3acc2f9d8e4527f584a9349fad614 /pkgs/development/libraries/libnfnetlink
parentfb62b5fb9185202c4200dae0f43b41586a8164e2 (diff)
downloadnixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar.gz
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar.bz2
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar.lz
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar.xz
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.tar.zst
nixlib-d5e4b92f22e2be41e63e02c07d26980e979b24e2.zip
add libnfnetlink-1.0.1
Diffstat (limited to 'pkgs/development/libraries/libnfnetlink')
-rw-r--r--pkgs/development/libraries/libnfnetlink/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libnfnetlink/default.nix b/pkgs/development/libraries/libnfnetlink/default.nix
new file mode 100644
index 000000000000..07a182dff10f
--- /dev/null
+++ b/pkgs/development/libraries/libnfnetlink/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "libnfnetlink-1.0.1";
+
+  src = fetchurl {
+    url = "http://www.netfilter.org/projects/libnfnetlink/files/${name}.tar.bz2";
+    md5 = "98927583d2016a9fb1936fed992e2c5e";
+  };
+
+  meta = {
+    description = "low-level library for netfilter related kernel/userspace communication.";
+    longDescription = ''
+      libnfnetlink is the low-level library for netfilter related kernel/userspace communication.
+      It provides a generic messaging infrastructure for in-kernel netfilter subsystems
+      (such as nfnetlink_log, nfnetlink_queue, nfnetlink_conntrack) and their respective users
+      and/or management tools in userspace.
+
+      This library is not meant as a public API for application developers.
+      It is only used by other netfilter.org projects, like the aforementioned ones.
+    '';
+    homepage = http://www.netfilter.org/projects/libnfnetlink/index.html;
+    license = "GPLv2";
+
+    platforms = stdenv.lib.platforms.linux;
+  };
+}