2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, libnetfilter_conntrack, ncurses }:
|
2017-06-27 18:27:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "iptstate";
|
2017-06-27 18:27:13 +01:00
|
|
|
version = "2.2.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/jaymzh/iptstate/releases/download/v${version}/${pname}-${version}.tar.bz2";
|
2017-06-27 18:27:13 +01:00
|
|
|
sha256 = "bef8eb67a4533e53079f397b71e91dd34da23f8cbd65cb2d5b67cb907b00c068";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libnetfilter_conntrack ncurses ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-27 18:27:13 +01:00
|
|
|
description = "Conntrack top like tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jaymzh/iptstate";
|
2017-06-27 18:27:13 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ trevorj ];
|
|
|
|
downloadPage = "https://github.com/jaymzh/iptstate/releases";
|
2020-06-30 20:00:30 +01:00
|
|
|
license = licenses.zlib;
|
2017-06-27 18:27:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -m755 -D iptstate $out/bin/iptstate
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
|