2014-11-08 22:04:49 +00:00
|
|
|
{ fetchurl, stdenv, flex, bison, pkgconfig, libmnl, libnfnetlink
|
|
|
|
, libnetfilter_conntrack, libnetfilter_queue, libnetfilter_cttimeout
|
2017-01-22 01:17:35 +00:00
|
|
|
, libnetfilter_cthelper, systemd }:
|
2014-11-08 22:04:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "conntrack-tools";
|
2018-05-30 06:54:48 +01:00
|
|
|
version = "1.4.5";
|
2014-11-08 22:04:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.netfilter.org/projects/conntrack-tools/files/${pname}-${version}.tar.bz2";
|
2018-05-30 06:54:48 +01:00
|
|
|
sha256 = "0qm4m78hr6a4fbmnkw5nyjm1pzzhydzx0nz7f96iv1c4fsfdkiin";
|
2014-11-08 22:04:49 +00:00
|
|
|
};
|
|
|
|
|
2017-01-22 01:17:35 +00:00
|
|
|
buildInputs = [
|
|
|
|
libmnl libnfnetlink libnetfilter_conntrack libnetfilter_queue
|
|
|
|
libnetfilter_cttimeout libnetfilter_cthelper systemd
|
|
|
|
];
|
2014-11-08 22:04:49 +00:00
|
|
|
nativeBuildInputs = [ flex bison pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://conntrack-tools.netfilter.org/;
|
|
|
|
description = "Connection tracking userspace tools";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2Plus;
|
2018-01-16 21:59:13 +00:00
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2014-11-08 22:04:49 +00:00
|
|
|
};
|
|
|
|
}
|