···1+{ stdenv, fetchurl, pkgconfig, libmnl }:
2+3+stdenv.mkDerivation rec {
4+ name = "libnetfilter_cttimeout-${version}";
5+ version = "1.0.0";
6+7+ src = fetchurl {
8+ url = "http://netfilter.org/projects/libnetfilter_cttimeout/files/${name}.tar.bz2";
9+ sha256 = "aeab12754f557cba3ce2950a2029963d817490df7edb49880008b34d7ff8feba";
10+ };
11+12+ buildInputs = [ pkgconfig libmnl ];
13+14+ meta = {
15+ description = "Userspace library that provides the programming interface to the connection tracking timeout infrastructure.";
16+ longDescription = ''
17+ libnetfilter_cttimeout is the userspace library that provides the programming
18+ interface to the fine-grain connection tracking timeout infrastructure.
19+ With this library, you can create, update and delete timeout policies that can
20+ be attached to traffic flows. This library is used by conntrack-tools.
21+ '';
22+ homepage = http://netfilter.org/projects/libnetfilter_cttimeout/;
23+ license = stdenv.lib.licenses.gpl2Plus;
24+ platforms = stdenv.lib.platforms.linux;
25+ };
26+}