commit
ca497b3c7d
32
pkgs/os-specific/linux/ethq/default.nix
Normal file
32
pkgs/os-specific/linux/ethq/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, ncurses }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ethq";
|
||||||
|
version = "0.6.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "isc-projects";
|
||||||
|
repo = "ethq";
|
||||||
|
rev = "refs/tags/v${builtins.replaceStrings ["."] ["_"] version}";
|
||||||
|
hash = "sha256-luvvNdH4kERAMy242kLCqlnGmfPjSjvoHa6J2J7BFi4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/bin
|
||||||
|
install -m0755 ethq $out/bin/ethq
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Ethernet NIC Queue stats viewer";
|
||||||
|
homepage = "https://github.com/isc-projects/ethq";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ delroth ];
|
||||||
|
};
|
||||||
|
}
|
@ -1502,6 +1502,8 @@ with pkgs;
|
|||||||
|
|
||||||
elkhound = callPackage ../development/tools/elkhound { };
|
elkhound = callPackage ../development/tools/elkhound { };
|
||||||
|
|
||||||
|
ethq = callPackage ../os-specific/linux/ethq { };
|
||||||
|
|
||||||
weidu = callPackage ../tools/games/weidu { };
|
weidu = callPackage ../tools/games/weidu { };
|
||||||
|
|
||||||
weylus = callPackage ../applications/graphics/weylus {
|
weylus = callPackage ../applications/graphics/weylus {
|
||||||
|
Loading…
Reference in New Issue
Block a user