tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ripgrep: 14.0.3 -> 14.1.0
authored by
R. Ryantm
and committed by
zowoq
2 years ago
b760bfbd
a43475ef
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
text
ripgrep
default.nix
+3
-3
pkgs/tools/text/ripgrep/default.nix
···
14
rg = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/rg";
15
in rustPlatform.buildRustPackage rec {
16
pname = "ripgrep";
17
-
version = "14.0.3";
18
19
src = fetchFromGitHub {
20
owner = "BurntSushi";
21
repo = pname;
22
rev = version;
23
-
hash = "sha256-NBGbiy+1AUIBJFx6kcGPSKo08a+dkNo4rNH2I1pki4U=";
24
};
25
26
-
cargoHash = "sha256-s6oK0/eL+NAhG3ySUlJBRatUuWXxfRVgAvlJm++0lkg=";
27
28
nativeBuildInputs = [ installShellFiles ]
29
++ lib.optional withPCRE2 pkg-config;
···
14
rg = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/rg";
15
in rustPlatform.buildRustPackage rec {
16
pname = "ripgrep";
17
+
version = "14.1.0";
18
19
src = fetchFromGitHub {
20
owner = "BurntSushi";
21
repo = pname;
22
rev = version;
23
+
hash = "sha256-CBU1GzgWMPTVsgaPMy39VRcENw5iWRUrRpjyuGiZpPI=";
24
};
25
26
+
cargoHash = "sha256-8FxN5MhYduMkzym7Xx4dnVbWaBKv9pgbXMIRGiRRQew=";
27
28
nativeBuildInputs = [ installShellFiles ]
29
++ lib.optional withPCRE2 pkg-config;