Merge pull request #93176 from oxalica/init/swapview

swapview: init at 0.1.0
This commit is contained in:
Ryan Mulligan 2020-11-23 11:24:59 -08:00 committed by GitHub
commit 8d12c667ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View File

@ -7470,6 +7470,8 @@ in
swagger-codegen = callPackage ../tools/networking/swagger-codegen { };
swapview = callPackage ../os-specific/linux/swapview/default.nix { };
swec = callPackage ../tools/networking/swec { };
svnfs = callPackage ../tools/filesystems/svnfs { };