summary refs log tree commit diff
path: root/pkgs/development/libraries/libnetfilter_cttimeout
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_cttimeout
parentc66a63e45c3f02b1b7d5e95c849788aea77bb9d9 (diff)
downloadnixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar.gz
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar.bz2
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar.lz
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar.xz
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.tar.zst
nixpkgs-417216aa57481d48fe3807e57785b753d5325bc6.zip
Revert "Add conntrack-tools and missing dependencies."
Diffstat (limited to 'pkgs/development/libraries/libnetfilter_cttimeout')
-rw-r--r--pkgs/development/libraries/libnetfilter_cttimeout/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/libraries/libnetfilter_cttimeout/default.nix b/pkgs/development/libraries/libnetfilter_cttimeout/default.nix
deleted file mode 100644
index 85586ca19c6..00000000000
--- a/pkgs/development/libraries/libnetfilter_cttimeout/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl, pkgconfig, libmnl }:
-
-stdenv.mkDerivation rec {
-  name = "libnetfilter_cttimeout-1.0.0";
-
-  src = fetchurl {
-    url = "http://netfilter.org/projects/libnetfilter_cttimeout/files/${name}.tar.bz2";
-    sha256 = "aeab12754f557cba3ce2950a2029963d817490df7edb49880008b34d7ff8feba";
-  };
-
-  buildInputs = [ pkgconfig libmnl ];
-
-  meta = {
-    description = "Userspace library that provides the programming interface to the connection tracking timeout infrastructure.";
-    longDescription = ''
-      libnetfilter_cttimeout is the userspace library that provides the programming
-      interface to the fine-grain connection tracking timeout infrastructure.
-      With this library, you can create, update and delete timeout policies that can
-      be attached to traffic flows. This library is used by conntrack-tools.
-    '';
-    homepage = http://netfilter.org/projects/libnetfilter_cttimeout/;
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}