lol
0
fork

Configure Feed

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

cargo-modules: 0.11.2 -> 0.15.5

skip failing tests

aktaboot 821fa71d 3866e056

+27 -4
+27 -4
pkgs/development/tools/rust/cargo-modules/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-modules"; 5 - version = "0.11.2"; 5 + version = "0.15.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "regexident"; 9 9 repo = pname; 10 - rev = version; 11 - hash = "sha256-dfeY9YylHF1QHNv7yTNYxUBxzcb276H80WL6JgXR/KY="; 10 + rev = "v${version}"; 11 + hash = "sha256-+jHanZ2/BIgNLUpMlibfUAVfA6QTPlavRci2YD1w3zE="; 12 12 }; 13 13 14 - cargoHash = "sha256-elzLO2YNDsD9FjCW0+2pUWgcJzOvzK+lyZBxrjVXoA8="; 14 + cargoHash = "sha256-umaKVs1fFiUKz2HIJuB+7skSwRQbG12dl9eD+et42go="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.CoreServices 18 + ]; 19 + 20 + checkFlags = [ 21 + "--skip=cfg_test::smoke" 22 + "--skip=colors::ansi::smoke" 23 + "--skip=colors::plain::smoke" 24 + "--skip=colors::truecolor::smoke" 25 + "--skip=focus_on::glob_path::smoke" 26 + "--skip=focus_on::self_path::smoke" 27 + "--skip=focus_on::simple_path::smoke" 28 + "--skip=focus_on::use_tree::smoke" 29 + "--skip=functions::function_body" 30 + "--skip=functions::function_inputs" 31 + "--skip=functions::function_outputs" 32 + "--skip=max_depth::depth_2::smoke" 33 + "--skip=selection::no_fns::smoke" 34 + "--skip=selection::no_modules::smoke" 35 + "--skip=selection::no_traits::smoke" 36 + "--skip=selection::no_types::smoke" 37 + "--skip=fields::enum_fields" 38 + "--skip=fields::struct_fields" 39 + "--skip=fields::tuple_fields" 40 + "--skip=fields::union_fields" 18 41 ]; 19 42 20 43 meta = with lib; {