mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ fetchurl, lib, stdenv, flex, bison, pkg-config, libmnl, libnfnetlink
|
|
, libnetfilter_conntrack, libnetfilter_queue, libnetfilter_cttimeout
|
|
, libnetfilter_cthelper, libtirpc
|
|
, systemdSupport ? true, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "conntrack-tools";
|
|
version = "1.4.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.netfilter.org/projects/conntrack-tools/files/${pname}-${version}.tar.xz";
|
|
hash = "sha256-BnZ39MX2VkgZ547TqdSomAk16pJz86uyKkIOowq13tY=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libmnl libnfnetlink libnetfilter_conntrack libnetfilter_queue
|
|
libnetfilter_cttimeout libnetfilter_cthelper libtirpc
|
|
] ++ lib.optionals systemdSupport [
|
|
systemd
|
|
];
|
|
nativeBuildInputs = [ flex bison pkg-config ];
|
|
|
|
configureFlags = [
|
|
(lib.enableFeature systemdSupport "systemd")
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://conntrack-tools.netfilter.org/";
|
|
description = "Connection tracking userspace tools";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|