5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
24 lines
673 B
Nix
24 lines
673 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swapview";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lilydjwg";
|
|
repo = "swapview";
|
|
rev = "v${version}";
|
|
sha256 = "0339biydk997j5r72vzp7djwkscsz89xr3936nshv23fmxjh2rzj";
|
|
};
|
|
|
|
cargoHash = "sha256-v3Fd08s70YX7pEIWYcgpC2daerfZhtzth4haKfUy0Q8=";
|
|
|
|
meta = with lib; {
|
|
description = "Simple program to view processes' swap usage on Linux";
|
|
mainProgram = "swapview";
|
|
homepage = "https://github.com/lilydjwg/swapview";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ oxalica ];
|
|
};
|
|
}
|