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

ast-grep: 0.8.0 -> 0.9.0
This commit is contained in:
Mario Rodas 2023-07-17 09:12:26 -05:00 committed by GitHub
commit fb52a31d94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,26 +6,25 @@
rustPlatform.buildRustPackage rec {
pname = "ast-grep";
version = "0.8.0";
version = "0.9.1";
src = fetchFromGitHub {
owner = "ast-grep";
repo = "ast-grep";
rev = version;
hash = "sha256-jLb2xMrsBuw+ty1S4X+YdvPfiDyDUuLdJH5dw+e+9Pk=";
hash = "sha256-gAzO5ganbwxarqHGVhAl9PtiHEr89puoPJK+iXtrvyU=";
};
cargoHash = "sha256-ayzR0LjKPXWgtMFznjDDFJM4Ef2HW1HK8aOCcDiwvAA=";
cargoHash = "sha256-SvGxDXC1nN6LitWHGcVieHJpEEuY1omqAvjaJmHPauE=";
# error: linker `aarch64-linux-gnu-gcc` not found
postPatch = ''
rm .cargo/config.toml
'';
checkFlags = lib.optionals (stdenv.isx86_64 && stdenv.isDarwin) [
# fails on emulated x86_64-darwin
# mach-o file, but is an incompatible architecture (have 'arm64', need 'x86_64')
"--skip=test::test_load_parser"
checkFlags = [
# disable flaky test
"--skip=test::test_load_parser_mac"
];
meta = with lib; {