about summary refs log tree commit diff
path: root/pkgs/development/libraries/catch2
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-10-12 10:33:32 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2019-10-12 19:33:32 +0200
commit0877ebd6d2e238f708bcf9dbfd2b013f641e0ace (patch)
treeacd03fbaf84d3dcbb028185f3f770220012aa228 /pkgs/development/libraries/catch2
parentce1fe5d751921b662342bab48e94f9853c064560 (diff)
catch2: 2.8.0 -> 2.9.2 (#63993)
* catch2: 2.8.0 -> 2.9.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/catch2/versions

* catch2: 2.9.1 -> 2.9.2
Diffstat (limited to 'pkgs/development/libraries/catch2')
-rw-r--r--pkgs/development/libraries/catch2/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/catch2/default.nix b/pkgs/development/libraries/catch2/default.nix
index d7876affe2f90..f8097599f4fbe 100644
--- a/pkgs/development/libraries/catch2/default.nix
+++ b/pkgs/development/libraries/catch2/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "catch2";
-  version = "2.8.0";
+  version = "2.9.2";
 
   src = fetchFromGitHub {
     owner = "catchorg";
     repo = "Catch2";
     rev = "v${version}";
-    sha256="1i7nz29gcsy9cnljb0sb1fw8fg9p1gdh2pdhrgj3kcrsnxgbyhrq";
+    sha256="0wn0vm9mdl4iv3scihdwfbg40appnllzbq4ik3jpr1jdf6ik7par";
   };
 
   nativeBuildInputs = [ cmake ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
-    homepage = http://catch-lib.net;
+    homepage = "http://catch-lib.net";
     license = licenses.boost;
     maintainers = with maintainers; [ edwtjo knedlsepp ];
     platforms = with platforms; unix;