From 348d8de2eb3eda4eeb66e4b4d35bd65bbe1cceb9 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sun, 16 Apr 2023 07:21:02 +0200 Subject: ethq: init at 0.6.2 --- pkgs/os-specific/linux/ethq/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/os-specific/linux/ethq/default.nix (limited to 'pkgs/os-specific/linux/ethq') diff --git a/pkgs/os-specific/linux/ethq/default.nix b/pkgs/os-specific/linux/ethq/default.nix new file mode 100644 index 00000000000..f966e285471 --- /dev/null +++ b/pkgs/os-specific/linux/ethq/default.nix @@ -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 ]; + }; +} -- cgit 1.4.1