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.
26 lines
618 B
Nix
26 lines
618 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "each";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arraypad";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "04rx8jf871l4darfx6029dhpnbpmzwjgzazayp1qcaadsk8207z5";
|
|
};
|
|
|
|
cargoSha256 = "1r7nzfh7v2mlp0wdrcpqfj68h3zmip2m3d4z2nwxyikmw7c80car";
|
|
|
|
meta = with lib; {
|
|
description = " A better way of working with structured data on the command line";
|
|
homepage = "https://github.com/arraypad/each";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ thiagokokada ];
|
|
};
|
|
}
|