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.
25 lines
607 B
Nix
25 lines
607 B
Nix
{ rustPlatform, lib, fetchFromGitLab }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "uwc";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "dead10ck";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1ywqq9hrrm3frvd2sswknxygjlxi195kcy7g7phwq63j7hkyrn50";
|
|
};
|
|
|
|
cargoSha256 = "04pslga3ff766cpb73n6ivzmqfa0hm19gcla8iyv6p59ddsajh3q";
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Like wc, but unicode-aware, and with per-line mode";
|
|
homepage = "https://gitlab.com/dead10ck/uwc";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ShamrockLee ];
|
|
};
|
|
}
|