Merge pull request #243901 from r-ryantm/auto-update/ast-grep

ast-grep: 0.8.0 -> 0.9.0

authored by

Mario Rodas and committed by
GitHub
fb52a31d d0f27583

+6 -7
+6 -7
pkgs/development/tools/misc/ast-grep/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "ast-grep"; 9 - version = "0.8.0"; 9 + version = "0.9.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ast-grep"; 13 13 repo = "ast-grep"; 14 14 rev = version; 15 - hash = "sha256-jLb2xMrsBuw+ty1S4X+YdvPfiDyDUuLdJH5dw+e+9Pk="; 15 + hash = "sha256-gAzO5ganbwxarqHGVhAl9PtiHEr89puoPJK+iXtrvyU="; 16 16 }; 17 17 18 - cargoHash = "sha256-ayzR0LjKPXWgtMFznjDDFJM4Ef2HW1HK8aOCcDiwvAA="; 18 + cargoHash = "sha256-SvGxDXC1nN6LitWHGcVieHJpEEuY1omqAvjaJmHPauE="; 19 19 20 20 # error: linker `aarch64-linux-gnu-gcc` not found 21 21 postPatch = '' 22 22 rm .cargo/config.toml 23 23 ''; 24 24 25 - checkFlags = lib.optionals (stdenv.isx86_64 && stdenv.isDarwin) [ 26 - # fails on emulated x86_64-darwin 27 - # mach-o file, but is an incompatible architecture (have 'arm64', need 'x86_64') 28 - "--skip=test::test_load_parser" 25 + checkFlags = [ 26 + # disable flaky test 27 + "--skip=test::test_load_parser_mac" 29 28 ]; 30 29 31 30 meta = with lib; {