lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cargo-flash: 0.12.1 -> 0.13.0

+4 -4
+4 -4
pkgs/development/tools/rust/cargo-flash/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-flash"; 13 - version = "0.12.1"; 13 + version = "0.13.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "probe-rs"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-bd0TY8bdpLHLCdDQgJeJvqjAcSF67+LGSNx8yafYbys="; 19 + sha256 = "sha256-O6T1Wul0nJaTVp9MEOj9FT+FUt4oYfqR5pGFaAxuK30="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-bx2N8zP7BmqU6oM/7Nf2i9S1uNWItReQMD59vtG1RKE="; 22 + cargoSha256 = "sha256-E2gBkr50hjkzY+ZVgMm7tpdwr9yuyFh65Ht6FAPvxYg="; 23 23 24 24 nativeBuildInputs = [ pkg-config rustfmt ]; 25 25 buildInputs = [ libusb1 ] ++ lib.optionals stdenv.isDarwin [ AppKit ]; ··· 29 29 homepage = "https://probe.rs/"; 30 30 changelog = "https://github.com/probe-rs/cargo-flash/blob/v${version}/CHANGELOG.md"; 31 31 license = with licenses; [ asl20 /* or */ mit ]; 32 - maintainers = with maintainers; [ fooker ]; 32 + maintainers = with maintainers; [ fooker newam ]; 33 33 }; 34 34 }