blob: 2cfc8e57c053ce84694dd1bbab559c8a89b378a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "swapview";
version = "0.1.0";
src = fetchFromGitHub {
owner = "lilydjwg";
repo = "swapview";
rev = "v${version}";
sha256 = "0339biydk997j5r72vzp7djwkscsz89xr3936nshv23fmxjh2rzj";
};
cargoSha256 = "03yi6bsjjnl8hznxr1nrnxx5lrqb574625j2lkxqbl9vrg9mswdz";
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 ];
};
}
|