forked from mirrors/nixpkgs
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
599 B
Nix
24 lines
599 B
Nix
{ lib, fetchFromGitHub, rustPlatform, cmake }:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "unused";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unused-code";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "06r6m7k570rdm9szghnp3g4r6ij0vp8apfanqzzxv2hd7gf8v62b";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cargoSha256 = "0y7vsba4r4v2lwf02i2dxwicnhknajbbzsdlnn5srvg6nvl3kspi";
|
|
|
|
meta = with lib; {
|
|
description = "A tool to identify potentially unused code";
|
|
homepage = "https://unused.codes";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.lrworth ];
|
|
};
|
|
}
|