depot/third_party/nixpkgs/pkgs/os-specific/linux/iptstate/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
748 B
Nix

{ stdenv, fetchurl, libnetfilter_conntrack, ncurses }:
stdenv.mkDerivation rec {
pname = "iptstate";
version = "2.2.6";
src = fetchurl {
url = "https://github.com/jaymzh/iptstate/releases/download/v${version}/${pname}-${version}.tar.bz2";
sha256 = "bef8eb67a4533e53079f397b71e91dd34da23f8cbd65cb2d5b67cb907b00c068";
};
buildInputs = [ libnetfilter_conntrack ncurses ];
meta = with stdenv.lib; {
description = "Conntrack top like tool";
homepage = "https://github.com/jaymzh/iptstate";
platforms = platforms.linux;
maintainers = with maintainers; [ trevorj ];
downloadPage = "https://github.com/jaymzh/iptstate/releases";
};
installPhase = ''
install -m755 -D iptstate $out/bin/iptstate
'';
}