summary refs log tree commit diff
path: root/pkgs/development/libraries/catch2
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-04-01 00:24:46 -0400
committerJohn Ericson <git@JohnEricson.me>2019-04-01 00:40:03 -0400
commit4ccb74011fc77cb761a3c33ed796724795425420 (patch)
tree91e0d95cdfe1023c3de5ff214eba58985e2d2d35 /pkgs/development/libraries/catch2
parent75514175920e1613c8eaf8026b367b48f8b77027 (diff)
parent18aa59b0f26fc707e7313f8467e67159e61600c2 (diff)
downloadnixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar.gz
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar.bz2
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar.lz
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar.xz
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.tar.zst
nixpkgs-4ccb74011fc77cb761a3c33ed796724795425420.zip
Merge commit '18aa59b0f26fc707e7313f8467e67159e61600c2' from master into staging
There was one conflict in the NixOS manual; I checked that it still
built after resolving it.
Diffstat (limited to 'pkgs/development/libraries/catch2')
-rw-r--r--pkgs/development/libraries/catch2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/catch2/default.nix b/pkgs/development/libraries/catch2/default.nix
index ffe027c8961..666db6f88e2 100644
--- a/pkgs/development/libraries/catch2/default.nix
+++ b/pkgs/development/libraries/catch2/default.nix
@@ -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 ];