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: d79bc3ccec01
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 35afcc33be67
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 29, 2020

  1. Copy the full SHA
    6d4749d View commit details

Commits on Mar 30, 2020

  1. Merge pull request #83724 from zowoq/ripgrep

    ripgrep: 12.0.0 -> 12.0.1
    marsam authored Mar 30, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    35afcc3 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
@@ -12,16 +12,16 @@

rustPlatform.buildRustPackage rec {
pname = "ripgrep";
version = "12.0.0";
version = "12.0.1";

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

cargoSha256 = "01zi9zqdjsgc3im9na511n6w2bmqvm46wryh10fhzc9fnkziqmq3";
cargoSha256 = "0i8x2xgri8f8mzrlkc8l2yzcgczl35nw4bmwg09d343mjkmk6d8y";

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