lol

cargo-cross: 0.2.4 -> 0.2.5

Diff: https://github.com/cross-rs/cross/compare/refs/tags/v0.2.4...v0.2.5

Changelog: https://github.com/cross-rs/cross/blob/v0.2.5/CHANGELOG.md

figsoda a53f1b94 dd353758

+9 -13
+9 -13
pkgs/development/tools/rust/cargo-cross/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , nix-update-script 6 5 }: 7 6 8 7 rustPlatform.buildRustPackage rec { 9 8 pname = "cargo-cross"; 10 - version = "0.2.4"; 9 + version = "0.2.5"; 11 10 12 11 src = fetchFromGitHub { 13 - owner = "rust-embedded"; 12 + owner = "cross-rs"; 14 13 repo = "cross"; 15 - rev = "v${version}"; 16 - sha256 = "sha256-gaY34ziC+ugw/HUTSh0Uk5WBfWMRZLybfpAMkUzsj8g="; 14 + rev = "refs/tags/v${version}"; 15 + sha256 = "sha256-TFPIQno30Vm5m2nZ2b3d0WPu/98UqANLhw3IZiE5a38="; 17 16 }; 18 17 19 - cargoSha256 = "sha256-bdcdlnNr4CdkIJNoo8tb4ohVDmAcKIOP0nRr6BM+EPw="; 18 + cargoSha256 = "sha256-x+DrKo79R8TAeLVuvIIguQs3gdAHiAQ9dUU2/eZRZ0c="; 20 19 21 - # Fixes https://github.com/cross-rs/cross/issues/943 22 - cargoPatches = [ 23 - (fetchpatch { 24 - url = "https://github.com/cross-rs/cross/commit/d639578881d21d28d91d155722201cc53b00c5e7.patch"; 25 - sha256 = "sha256-FWaYIEMonb1Z8g5yXfd/Rl/LnxSYVwLfFIvPY1mJNxU="; 26 - }) 20 + checkFlags = [ 21 + "--skip=docker::shared::tests::directories::test_host" 27 22 ]; 28 23 29 24 passthru = { ··· 32 27 33 28 meta = with lib; { 34 29 description = "Zero setup cross compilation and cross testing"; 35 - homepage = "https://github.com/rust-embedded/cross"; 30 + homepage = "https://github.com/cross-rs/cross"; 31 + changelog = "https://github.com/cross-rs/cross/blob/v${version}/CHANGELOG.md"; 36 32 license = with licenses; [ asl20 /* or */ mit ]; 37 33 maintainers = with maintainers; [ otavio ]; 38 34 mainProgram = "cross";