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

Commits on Mar 19, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    9e49006 View commit details

Commits on Mar 26, 2019

  1. Merge pull request #57891 from dtzWill/update/catch2-2.7.0

    catch2: 2.6.0 -> 2.7.0
    dtzWill authored Mar 26, 2019
    Copy the full SHA
    08d3505 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/catch2/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/catch2/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "catch2-${version}";
version = "2.6.0";
version = "2.7.0";

src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
sha256="1p2y6fhxfmb48nl03xdg62nfrwssaaiw10vzr194z6srcj90n2r7";
sha256="05j01v4hmw0vv5vcj11pbngl200b3j2yvawk08fw9a249jzx6v1a";
};

nativeBuildInputs = [ cmake ];