fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / ne / netproc / package.nix
blobeb49dcb019f5562bac1f1548f21052e0e59a8809
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   ncurses,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "netproc";
10   version = "0.6.6";
12   src = fetchFromGitHub {
13     owner = "berghetti";
14     repo = "netproc";
15     rev = finalAttrs.version;
16     hash = "sha256-OQWlFwCga33rTseLeO8rAd+pkLHbSNf3YI5OSwrdIyk=";
17   };
19   buildInputs = [ ncurses ];
21   installFlags = [ "prefix=$(out)" ];
23   meta = with lib; {
24     description = "Tool to monitor network traffic based on processes";
25     homepage = "https://github.com/berghetti/netproc";
26     license = licenses.gpl3;
27     mainProgram = "netproc";
28     maintainers = [ maintainers.azuwis ];
29     platforms = platforms.linux;
30   };