wizer: 1.6.0 -> 3.0.1

amesgen cbea42d3 592d4ee6

+4 -5
+4 -5
pkgs/development/tools/wizer/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "wizer"; 11 - version = "1.6.0"; 11 + version = "3.0.1"; 12 12 13 13 # the crate does not contain files which are necessary for the tests 14 14 # see https://github.com/bytecodealliance/wizer/commit/3a95e27ce42f1fdaef07b52988e4699eaa221e04 15 15 src = fetchFromGitHub { 16 16 owner = "bytecodealliance"; 17 17 repo = "wizer"; 18 - # see https://github.com/bytecodealliance/wizer/pull/62 19 - rev = "e74c6e59562c4b7edcda506674db8aead878a893"; 20 - sha256 = "sha256-bVxjcb231Ygz+z+8D1U2YQqEdIKsostxISgYt2KecXc="; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-/4VkGvXlWU1jZztBCWCsJDQXTV8krIHaoyqmoXwjGIM="; 21 20 }; 22 21 23 - cargoSha256 = "sha256-S9h47aGG5UhwNoOnUHFrtEyByg8iCMC88Cspb/6tb8c="; 22 + cargoHash = "sha256-M0EhyZH2maZCr4tWDo9ppKBM3CXEfwjUfnVksqVWKgU="; 24 23 25 24 cargoBuildFlags = [ "--bin" pname ]; 26 25