about summary refs log tree commit diff
path: root/pkgs/development/libraries/libnetfilter_cthelper
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2014-11-09 02:12:04 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2014-11-09 02:12:04 +0300
commit417216aa57481d48fe3807e57785b753d5325bc6 (patch)
tree8a196b47a43e9472c3b52d80aff68f55ff1031e1 /pkgs/development/libraries/libnetfilter_cthelper
parentc66a63e45c3f02b1b7d5e95c849788aea77bb9d9 (diff)
Revert "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, 0 insertions, 25 deletions
diff --git a/pkgs/development/libraries/libnetfilter_cthelper/default.nix b/pkgs/development/libraries/libnetfilter_cthelper/default.nix
deleted file mode 100644
index c4648a56f3f49..0000000000000
--- a/pkgs/development/libraries/libnetfilter_cthelper/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ 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;
-  };
-}