Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f2639566b591
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6b7a7c0c3261
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 2, 2019

  1. ripgrep: 11.0.1 -> 11.0.2

    lilyball committed Aug 2, 2019
    Copy the full SHA
    cd37182 View commit details
  2. Merge pull request #65763 from lilyball/ripgrep

    ripgrep: 11.0.1 -> 11.0.2
    marsam authored Aug 2, 2019
    Copy the full SHA
    6b7a7c0 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/text/ripgrep/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/text/ripgrep/default.nix
Original file line number Diff line number Diff line change
@@ -5,16 +5,16 @@

rustPlatform.buildRustPackage rec {
pname = "ripgrep";
version = "11.0.1";
version = "11.0.2";

src = fetchFromGitHub {
owner = "BurntSushi";
repo = pname;
rev = version;
sha256 = "0vak82d4vyw0w8agswbyxa6g3zs2h9mxm2xjw0xs9qccvmi7whbb";
sha256 = "1iga3320mgi7m853la55xip514a3chqsdi1a1rwv25lr9b1p7vd3";
};

cargoSha256 = "1k1wg27p7w8b3cgygnkr6yhsc4hpnvrpa227s612vy2zfcmgb1kx";
cargoSha256 = "11477l4l1y55klw5dp2kbsnv989vdz1547ml346hcfbkzv7m450v";

cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2";