probe-rs-cli-util: 0.12.0 -> 0.13.0

+4 -4
+4 -4
pkgs/development/tools/rust/probe-rs-cli/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "probe-rs-cli"; 5 - version = "0.12.0"; 5 + version = "0.13.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-XYrB/aKuFCe0FNe6N9vqDdr408tAiN6YvT5BL6lCxmU="; 9 + sha256 = "sha256-3aKRUABJ1LkRGzwDSwQZeNXKGeRmTlbHKSGewfKn+2Q="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-aXSJMSGNl2fzob1j/qiPHHZLisYQeU1gUO5cYbzSHYA="; 12 + cargoSha256 = "sha256-bOfdpRVm9zqpFF/YmD06u4OKdyqXwfCSTNlTIZZygeg="; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; 15 15 buildInputs = [ libusb1 ] ++ lib.optionals stdenv.isDarwin [ AppKit ]; ··· 19 19 homepage = "https://probe.rs/"; 20 20 changelog = "https://github.com/probe-rs/probe-rs/blob/v${version}/CHANGELOG.md"; 21 21 license = with licenses; [ asl20 /* or */ mit ]; 22 - maintainers = with maintainers; [ xgroleau ]; 22 + maintainers = with maintainers; [ xgroleau newam ]; 23 23 }; 24 24 }