Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
26 lines
655 B
Nix
26 lines
655 B
Nix
{ lib, stdenv, fetchFromGitHub, ncurses }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "netproc";
|
|
version = "0.6.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "berghetti";
|
|
repo = "netproc";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-OQWlFwCga33rTseLeO8rAd+pkLHbSNf3YI5OSwrdIyk=";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
installFlags = [ "prefix=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool to monitor network traffic based on processes";
|
|
homepage = "https://github.com/berghetti/netproc";
|
|
license = licenses.gpl3;
|
|
mainProgram = "netproc";
|
|
maintainers = [ maintainers.azuwis ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|