diskgraph: init at 0-unstable-2025-11-13 (#488944)

This commit is contained in:
Arne Keller
2026-02-10 11:53:45 +00:00
committed by GitHub
2 changed files with 40 additions and 0 deletions
+7
View File
@@ -18785,6 +18785,13 @@
github = "netthier";
githubId = 66856670;
};
nettika = {
email = "nettika@leaf.ninja";
name = "Nettika";
github = "nettika-cat";
githubId = 131948390;
keys = [ { fingerprint = "6AC6 0C6F FA92 94AD AEA7 8C03 C357 EE70 D502 7BCC"; } ];
};
networkexception = {
name = "networkException";
email = "nix@nwex.de";
+33
View File
@@ -0,0 +1,33 @@
{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "diskgraph";
version = "0-unstable-2025-11-13";
src = fetchFromGitHub {
owner = "stolk";
repo = "diskgraph";
rev = "9a515fc620a792d118763ea591c304792e511274";
hash = "sha256-iL4u63/dGapOSK7AuV1FChDUcwsBOcx0TYAhcH9E+S0=";
};
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = {
description = "Terminal-based monitor for disk I/O";
homepage = "https://github.com/stolk/diskgraph";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
fliegendewurst
nettika
];
mainProgram = "diskgraph";
platforms = lib.platforms.linux;
};
}