ast-grep 0.11.0 -> 0.11.1 https://github.com/ast-grep/ast-grep/releases attrpath: ast-grep Checking auto update branch... No auto update branch exists Old version 0.11.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , stdenv }: rustPlatform.buildRustPackage rec { pname = "ast-grep"; version = "0.11.1"; src = fetchFromGitHub { owner = "ast-grep"; repo = "ast-grep"; rev = version; hash = "sha256-1ThEJ8VEcXNScY4zmmXz7BVYs6irE1h9HDxkVvmVq1k="; }; cargoHash = "sha256-3myUFgKktvD9S0Bp7ixsZb59p3iDwmiEKUFD7wB+7IM="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' rm .cargo/config.toml ''; checkFlags = [ # disable flaky test "--skip=test::test_load_parser_mac" ]; 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 cafkafk ]; }; }