1 { stdenv, lib, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "isc-projects";
10 rev = "refs/tags/v${builtins.replaceStrings ["."] ["_"] version}";
11 hash = "sha256-ye5ep9EM9Sq/NqNZHENPmFZefVBx1BGrPm3YEG1NcSc=";
14 buildInputs = [ ncurses ];
20 install -m0755 ethq $out/bin/ethq
26 description = "Ethernet NIC Queue stats viewer";
28 homepage = "https://github.com/isc-projects/ethq";
29 license = licenses.mpl20;
30 platforms = platforms.linux;