4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, stdenv
|
|
, nixosTests
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, asciidoctor
|
|
, installShellFiles
|
|
, Security
|
|
, withPCRE2 ? true
|
|
, pcre2 ? null
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ripgrep";
|
|
version = "12.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BurntSushi";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1hqps7l5qrjh9f914r5i6kmcz6f1yb951nv4lby0cjnp5l253kps";
|
|
};
|
|
|
|
cargoSha256 = "03wf9r2csi6jpa7v5sw5lpxkrk4wfzwmzx7k3991q3bdjzcwnnwp";
|
|
|
|
cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";
|
|
|
|
nativeBuildInputs = [ asciidoctor installShellFiles ];
|
|
buildInputs = (stdenv.lib.optional withPCRE2 pcre2)
|
|
++ (stdenv.lib.optional stdenv.isDarwin Security);
|
|
|
|
preFixup = ''
|
|
installManPage $releaseDir/build/ripgrep-*/out/rg.1
|
|
|
|
installShellCompletion $releaseDir/build/ripgrep-*/out/rg.{bash,fish}
|
|
installShellCompletion --zsh complete/_rg
|
|
'';
|
|
|
|
passthru.tests = { inherit (nixosTests) ripgrep; };
|
|
|
|
meta = with lib; {
|
|
description = "A utility that combines the usability of The Silver Searcher with the raw speed of grep";
|
|
homepage = "https://github.com/BurntSushi/ripgrep";
|
|
license = with licenses; [ unlicense /* or */ mit ];
|
|
maintainers = with maintainers; [ tailhook globin ma27 zowoq ];
|
|
};
|
|
}
|