mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
58 lines
2.0 KiB
Nix
58 lines
2.0 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, installShellFiles
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ast-grep";
|
|
version = "0.27.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ast-grep";
|
|
repo = "ast-grep";
|
|
rev = version;
|
|
hash = "sha256-aoROD6c+VghvoBixSYLXC1DrYDkOhJA5rjDycc9NyR8=";
|
|
};
|
|
|
|
cargoHash = "sha256-skOE/J+Msvm8tUizijONy+vx4MrsMbd4uUs5bO8FId4=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# error: linker `aarch64-linux-gnu-gcc` not found
|
|
postPatch = ''
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd sg \
|
|
--bash <($out/bin/sg completions bash) \
|
|
--fish <($out/bin/sg completions fish) \
|
|
--zsh <($out/bin/sg completions zsh)
|
|
'';
|
|
|
|
checkFlags = [
|
|
# disable flaky test
|
|
"--skip=test::test_load_parser_mac"
|
|
|
|
# BUG: Broke by 0.12.1 update (https://github.com/NixOS/nixpkgs/pull/257385)
|
|
# Please check if this is fixed in future updates of the package
|
|
"--skip=verify::test_case::tests::test_unmatching_id"
|
|
] ++ lib.optionals (with stdenv.hostPlatform; (isDarwin && isx86_64) || (isLinux && isAarch64)) [
|
|
# x86_64-darwin: source/benches/fixtures/json-mac.so\' (no such file), \'/private/tmp/nix-build-.../source/benches/fixtures/json-mac.so\' (mach-o file, but is an incompatible architecture (have \'arm64\', need \'x86_64h\' or \'x86_64\'))" })
|
|
# aarch64-linux: /build/source/benches/fixtures/json-linux.so: cannot open shared object file: No such file or directory"
|
|
"--skip=test::test_load_parser"
|
|
"--skip=test::test_register_lang"
|
|
];
|
|
|
|
meta = with lib; {
|
|
mainProgram = "sg";
|
|
description = "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 ];
|
|
};
|
|
}
|