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

Commits on Jun 17, 2017

  1. catch: 1.7.0 -> 1.9.5

    romildo committed Jun 17, 2017
    Copy the full SHA
    7049e7a View commit details

Commits on Jun 18, 2017

  1. Merge pull request #26667 from romildo/upd.catch

    catch: 1.7.0 -> 1.9.5
    Mic92 authored Jun 18, 2017
    Copy the full SHA
    7054d97 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/libraries/catch/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/libraries/catch/default.nix
Original file line number Diff line number Diff line change
@@ -3,16 +3,16 @@
stdenv.mkDerivation rec {

name = "catch-${version}";
version = "1.7.0";
version = "1.9.5";

src = fetchFromGitHub {
owner = "philsquared";
repo = "Catch";
rev = "v." + version;
sha256 = "0harki6irc4mqipjc24zyy0jimidr5ng3ss29bnpzbbwhrnkyrgm";
rev = "v${version}";
sha256 = "1in4f6w1pja8m1hvyiwx7s7gxnj6nlj1fgxw9blldffh09ikgpm2";
};

buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DUSE_CPP14=ON" ];

doCheck = true;