mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
netproc: init at unstable-2022-02-11
This commit is contained in:
parent
9f3d358286
commit
a2903463c9
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/networking/netproc/default.nix
Normal file
25
pkgs/tools/networking/netproc/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchFromGitHub, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "netproc";
|
||||
version = "unstable-2022-02-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "berghetti";
|
||||
repo = "netproc";
|
||||
rev = "87a10ce31ae150847674ad87ef84ef2fd374b420";
|
||||
sha256 = "sha256-YSKDOvqWLCrnP1qjmzMuRgjXiXZ9D4AuxXm/3xzS4gc=";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
installFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to monitor network traffic based on processes";
|
||||
license = licenses.gpl3;
|
||||
homepage = "https://github.com/berghetti/netproc";
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.azuwis ];
|
||||
};
|
||||
}
|
|
@ -8197,6 +8197,8 @@ with pkgs;
|
|||
|
||||
netpbm = callPackage ../tools/graphics/netpbm { };
|
||||
|
||||
netproc = callPackage ../tools/networking/netproc { };
|
||||
|
||||
netrw = callPackage ../tools/networking/netrw { };
|
||||
|
||||
netselect = callPackage ../tools/networking/netselect { };
|
||||
|
|
Loading…
Reference in a new issue