diff options
Diffstat (limited to 'pkgs/tools/text/ripgrep/default.nix')
-rw-r--r-- | pkgs/tools/text/ripgrep/default.nix | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix deleted file mode 100644 index 35e56b7fb3a4..000000000000 --- a/pkgs/tools/text/ripgrep/default.nix +++ /dev/null @@ -1,63 +0,0 @@ -{ lib, stdenv -, buildPackages -, fetchFromGitHub -, rustPlatform -, installShellFiles -, pkg-config -, Security -, withPCRE2 ? true -, pcre2 -}: - -let - canRunRg = stdenv.hostPlatform.emulatorAvailable buildPackages; - rg = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/rg"; -in rustPlatform.buildRustPackage rec { - pname = "ripgrep"; - version = "14.1.0"; - - src = fetchFromGitHub { - owner = "BurntSushi"; - repo = pname; - rev = version; - hash = "sha256-CBU1GzgWMPTVsgaPMy39VRcENw5iWRUrRpjyuGiZpPI="; - }; - - cargoHash = "sha256-8FxN5MhYduMkzym7Xx4dnVbWaBKv9pgbXMIRGiRRQew="; - - nativeBuildInputs = [ installShellFiles ] - ++ lib.optional withPCRE2 pkg-config; - buildInputs = lib.optional withPCRE2 pcre2 - ++ lib.optional stdenv.isDarwin Security; - - buildFeatures = lib.optional withPCRE2 "pcre2"; - - preFixup = lib.optionalString canRunRg '' - ${rg} --generate man > rg.1 - installManPage rg.1 - - installShellCompletion --cmd rg \ - --bash <(${rg} --generate complete-bash) \ - --fish <(${rg} --generate complete-fish) \ - --zsh <(${rg} --generate complete-zsh) - ''; - - doInstallCheck = true; - installCheckPhase = '' - file="$(mktemp)" - echo "abc\nbcd\ncde" > "$file" - ${rg} -N 'bcd' "$file" - ${rg} -N 'cd' "$file" - '' + lib.optionalString withPCRE2 '' - echo '(a(aa)aa)' | ${rg} -P '\((a*|(?R))*\)' - ''; - - meta = with lib; { - description = "Utility that combines the usability of The Silver Searcher with the raw speed of grep"; - homepage = "https://github.com/BurntSushi/ripgrep"; - changelog = "https://github.com/BurntSushi/ripgrep/releases/tag/${version}"; - license = with licenses; [ unlicense /* or */ mit ]; - maintainers = with maintainers; [ globin ma27 zowoq ]; - mainProgram = "rg"; - }; -} |