nixpkgs/pkgs/tools/system/systeroid/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
907 B
Nix
Raw Normal View History

2022-05-19 17:40:55 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, linux-doc
, xorg
}:
rustPlatform.buildRustPackage rec {
pname = "systeroid";
2022-09-07 20:41:52 +00:00
version = "0.2.2";
2022-05-19 17:40:55 +00:00
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
2022-09-07 20:41:52 +00:00
sha256 = "sha256-Xkpa5W+smNMrcWXylOy0fU1wI7jBF9Bw16pzI5IDFI4=";
2022-05-19 17:40:55 +00:00
};
postPatch = ''
substituteInPlace systeroid-core/src/parsers.rs \
--replace '"/usr/share/doc/kernel-doc-*/Documentation/*",' '"${linux-doc}/share/doc/linux-doc/*",'
'';
2022-09-07 20:41:52 +00:00
cargoSha256 = "sha256-A9yd/Z94B6beWyiiRl7rJQOj7YMNFHkjhtu5MHG8/XA=";
2022-05-19 17:40:55 +00:00
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; [ SuperSandro2000 ];
};
}