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.
23 lines
571 B
Nix
23 lines
571 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "diskonaut";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "imsnif";
|
|
repo = "diskonaut";
|
|
rev = version;
|
|
sha256 = "1pmbag3r2ka30zmy2rs9jps2qxj2zh0gy4a774v9yhf0b6qjid54";
|
|
};
|
|
|
|
cargoSha256 = "10jrcy8m9ll4136ghq3fhmnphd9g3rw863x708vm17n44kgdxyab";
|
|
|
|
meta = with lib; {
|
|
description = "Terminal disk space navigator";
|
|
homepage = "https://github.com/imsnif/diskonaut";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ evanjs ];
|
|
};
|
|
}
|