85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
24 lines
648 B
Nix
24 lines
648 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";
|
|
};
|
|
|
|
cargoSha256 = "03yi6bsjjnl8hznxr1nrnxx5lrqb574625j2lkxqbl9vrg9mswdz";
|
|
|
|
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 ];
|
|
};
|
|
}
|