Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

cargo-spellcheck: 0.13.2 -> 0.14.0

+3 -8
+3 -8
pkgs/development/tools/rust/cargo-spellcheck/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-spellcheck"; 11 - version = "0.13.2"; 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 - hash = "sha256-PgV+sjCf4O24v0i9P7RJIcn28OWMUcPSwy+P5n8RwS4="; 17 + hash = "sha256-NrtPV2bd9BuA1nnniIcth85gJQmFGy9LHdajqmW8j4Q="; 18 18 }; 19 19 20 - cargoHash = "sha256-6dhM+FzuLtKtRp2mpE9nlpT+0PBcgGqvBa9vqs6Rs7s="; 21 - 22 - postPatch = '' 23 - substituteInPlace src/lib.rs \ 24 - --replace "#![deny(dead_code)]" "#![warn(dead_code)]" 25 - ''; 20 + cargoHash = "sha256-mxx4G77ldPfVorNa1LGTcA0Idwmrcl8S/ze+UUoLHhI="; 26 21 27 22 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 28 23