iotop-c: 1.27 -> 1.28 (#403726)

This commit is contained in:
Nick Cao
2025-05-08 17:12:50 -04:00
committed by GitHub
+7 -7
View File
@@ -8,26 +8,26 @@
stdenv.mkDerivation rec {
pname = "iotop-c";
version = "1.27";
version = "1.28";
src = fetchFromGitHub {
owner = "Tomas-M";
repo = "iotop";
rev = "v${version}";
sha256 = "sha256-o8OJnZjrDbzzhwfzRWmyCmhBWxMVKRDeDWWBCXy3C90=";
sha256 = "sha256-Cauy6q587M/VhMsr1vFlNaEJfteDJmNTjE81m0u+OBc=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses ];
makeFlags = [
"DESTDIR=$(out)"
"TARGET=iotop-c"
"PREFIX=${placeholder "out"}"
"BINDIR=${placeholder "out"}/bin"
];
postInstall = ''
mv $out/usr/share/man/man8/{iotop,iotop-c}.8
ln -s $out/usr/sbin $out/bin
ln -s $out/usr/share $out/share
mv $out/share/man/man8/{iotop,iotop-c}.8
'';
meta = with lib; {