mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
swapview: init at 0.1.0
This commit is contained in:
parent
5d1064a212
commit
dea3f0c841
23
pkgs/os-specific/linux/swapview/default.nix
Normal file
23
pkgs/os-specific/linux/swapview/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "swapview";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lilydjwg";
|
||||
repo = "swapview";
|
||||
rev = "v${version}";
|
||||
sha256 = "0339biydk997j5r72vzp7djwkscsz89xr3936nshv23fmxjh2rzj";
|
||||
};
|
||||
|
||||
cargoSha256 = "0z99pqd41y8cci3yvwsnm5zbq7pzli62z8qqqghmz1hcq5pb5q7g";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple program to view processes' swap usage on Linux";
|
||||
homepage = "https://github.com/lilydjwg/swapview";
|
||||
platforms = platforms.linux;
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ oxalica ];
|
||||
};
|
||||
}
|
@ -6989,6 +6989,8 @@ in
|
||||
|
||||
swagger-codegen = callPackage ../tools/networking/swagger-codegen { };
|
||||
|
||||
swapview = callPackage ../os-specific/linux/swapview/default.nix { };
|
||||
|
||||
swec = callPackage ../tools/networking/swec { };
|
||||
|
||||
swfdec = callPackage ../tools/graphics/swfdec {};
|
||||
|
Loading…
Reference in New Issue
Block a user