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 7 rustPlatform.buildRustPackage rec { 8 pname = "ast-grep"; 9 - version = "0.8.0"; 10 11 src = fetchFromGitHub { 12 owner = "ast-grep"; 13 repo = "ast-grep"; 14 rev = version; 15 - hash = "sha256-jLb2xMrsBuw+ty1S4X+YdvPfiDyDUuLdJH5dw+e+9Pk="; 16 }; 17 18 - cargoHash = "sha256-ayzR0LjKPXWgtMFznjDDFJM4Ef2HW1HK8aOCcDiwvAA="; 19 20 # error: linker `aarch64-linux-gnu-gcc` not found 21 postPatch = '' 22 rm .cargo/config.toml 23 ''; 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" 29 ]; 30 31 meta = with lib; {
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "ast-grep"; 9 + version = "0.9.1"; 10 11 src = fetchFromGitHub { 12 owner = "ast-grep"; 13 repo = "ast-grep"; 14 rev = version; 15 + hash = "sha256-gAzO5ganbwxarqHGVhAl9PtiHEr89puoPJK+iXtrvyU="; 16 }; 17 18 + cargoHash = "sha256-SvGxDXC1nN6LitWHGcVieHJpEEuY1omqAvjaJmHPauE="; 19 20 # error: linker `aarch64-linux-gnu-gcc` not found 21 postPatch = '' 22 rm .cargo/config.toml 23 ''; 24 25 + checkFlags = [ 26 + # disable flaky test 27 + "--skip=test::test_load_parser_mac" 28 ]; 29 30 meta = with lib; {