tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
cargo-spellcheck: 0.13.2 -> 0.14.0
Alex Martens
2 years ago
181b7b13
15639ed0
+3
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
rust
cargo-spellcheck
default.nix
+3
-8
pkgs/development/tools/rust/cargo-spellcheck/default.nix
···
8
8
9
9
rustPlatform.buildRustPackage rec {
10
10
pname = "cargo-spellcheck";
11
11
-
version = "0.13.2";
11
11
+
version = "0.14.0";
12
12
13
13
src = fetchFromGitHub {
14
14
owner = "drahnr";
15
15
repo = pname;
16
16
rev = "v${version}";
17
17
-
hash = "sha256-PgV+sjCf4O24v0i9P7RJIcn28OWMUcPSwy+P5n8RwS4=";
17
17
+
hash = "sha256-NrtPV2bd9BuA1nnniIcth85gJQmFGy9LHdajqmW8j4Q=";
18
18
};
19
19
20
20
-
cargoHash = "sha256-6dhM+FzuLtKtRp2mpE9nlpT+0PBcgGqvBa9vqs6Rs7s=";
21
21
-
22
22
-
postPatch = ''
23
23
-
substituteInPlace src/lib.rs \
24
24
-
--replace "#![deny(dead_code)]" "#![warn(dead_code)]"
25
25
-
'';
20
20
+
cargoHash = "sha256-mxx4G77ldPfVorNa1LGTcA0Idwmrcl8S/ze+UUoLHhI=";
26
21
27
22
nativeBuildInputs = [ rustPlatform.bindgenHook ];
28
23