ast-grep 0.5.2 -> 0.7.0 https://github.com/ast-grep/ast-grep/releases attrpath: ast-grep Checking auto update branch... No auto update branch exists Old version 0.5.2" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , stdenv }: rustPlatform.buildRustPackage rec { pname = "ast-grep"; version = "0.6.6"; src = fetchFromGitHub { owner = "ast-grep"; repo = "ast-grep"; rev = version; hash = "sha256-iU7UtyF5isyc4G3vYu7f1bU7U38HsgkzNF+LctE08ds="; }; cargoHash = "sha256-30cYsRj10uFUlxhr7kgOy3I0m9qtq6kVNednX7OSQUk="; # 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" ]; meta = with lib; { mainProgram = "sg"; description = "A fast and polyglot tool for code searching, linting, rewriting at large scale"; homepage = "https://ast-grep.github.io/"; changelog = "https://github.com/ast-grep/ast-grep/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ montchr lord-valen ]; }; }