5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
39 lines
897 B
Nix
39 lines
897 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, linux-doc
|
|
, xorg
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "systeroid";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-yEsDtjoV0NQPG/PJnVMBBMuPDBdK2kIfUWxtfkvRI04=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace systeroid-core/src/parsers.rs \
|
|
--replace '"/usr/share/doc/kernel-doc-*/Documentation/*",' '"${linux-doc}/share/doc/linux-doc/*",'
|
|
'';
|
|
|
|
cargoHash = "sha256-Plu7JxTFjLUXWLmIax/QPgq7QzdQd0vFinj+Gx03AQQ=";
|
|
|
|
buildInputs = [
|
|
xorg.libxcb
|
|
];
|
|
|
|
# tries to access /sys/
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "More powerful alternative to sysctl(8) with a terminal user interface";
|
|
homepage = "https://github.com/orhun/systeroid";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|