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

Commits on Feb 28, 2018

  1. catch: 1.11.0 -> 1.12.0

    romildo committed Feb 28, 2018
    Copy the full SHA
    87f8676 View commit details

Commits on Mar 1, 2018

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

    catch: 1.11.0 -> 1.12.0
    Mic92 authored Mar 1, 2018
    Copy the full SHA
    1cb726b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/catch/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/catch/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "catch-${version}";
version = "1.11.0";
version = "1.12.0";

src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch";
rev = "v${version}";
sha256 = "0v9yw7ydvhydp78hh7cmaif4h73k5qxqpm1g7xn8i882i3s84s2s";
sha256 = "0hkcmycvyyazzi9dywnyiipnmbx399iirh5xk5g957c8zl0505kd";
};

nativeBuildInputs = [ cmake ];