Files
nixpkgs/pkgs/by-name/sw/swapview/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

29 lines
724 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage {
pname = "swapview";
version = "0.1.0-unstable-2023-12-03";
src = fetchFromGitHub {
owner = "lilydjwg";
repo = "swapview";
rev = "cc8e863acd2084413b91572357dab34551c27ed7";
sha256 = "sha256-H5jMdmtZoN9nQfjXFQyYbuvPY58jmEP2j/XWGdBocFo=";
};
cargoHash = "sha256-kLWd8dg63oA4sPMPPkRn+HsU+v+gQAiniBWI0i7JszM=";
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 ];
};
}