Merge pull request #256718 from azuwis/netproc

netproc: unstable-2022-02-11 -> 0.6.6
This commit is contained in:
Weijia Wang 2023-09-22 20:57:26 +02:00 committed by GitHub
commit 6e47428243
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 9 deletions

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "netproc";
version = "unstable-2022-02-11";
version = "0.6.6";
src = fetchFromGitHub {
owner = "berghetti";
repo = "netproc";
rev = "87a10ce31ae150847674ad87ef84ef2fd374b420";
sha256 = "sha256-YSKDOvqWLCrnP1qjmzMuRgjXiXZ9D4AuxXm/3xzS4gc=";
rev = finalAttrs.version;
sha256 = "sha256-OQWlFwCga33rTseLeO8rAd+pkLHbSNf3YI5OSwrdIyk=";
};
buildInputs = [ ncurses ];
@ -17,9 +17,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Tool to monitor network traffic based on processes";
license = licenses.gpl3;
homepage = "https://github.com/berghetti/netproc";
platforms = platforms.linux;
license = licenses.gpl3;
mainProgram = "netproc";
maintainers = [ maintainers.azuwis ];
platforms = platforms.linux;
};
}
})

View file

@ -11093,8 +11093,6 @@ with pkgs;
netpbm = callPackage ../tools/graphics/netpbm { };
netproc = callPackage ../tools/networking/netproc { };
netrw = callPackage ../tools/networking/netrw { };
netselect = callPackage ../tools/networking/netselect { };