catch2: init at 2.4.2

This commit is contained in:
Jason Hilton 2018-11-09 18:26:34 -08:00 committed by Edward Tjörnhammar
parent 30422aa7d0
commit 7759fe1f22
No known key found for this signature in database
GPG Key ID: 577898458385603E
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, cmake, python }:
stdenv.mkDerivation rec {
name = "catch2-${version}";
version = "2.4.2";
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
sha256="1105bxbvh1xxl4yxjjp6l6w6hgsh8xbdiwlnga9di5y2x92b9bjd";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-H.."
"-DBUILD_TESTING=OFF"];
meta = with stdenv.lib; {
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
homepage = http://catch-lib.net;
license = licenses.boost;
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = with platforms; unix;
};
}

@ -1108,6 +1108,8 @@ with pkgs;
catch = callPackage ../development/libraries/catch { };
catch2 = callPackage ../development/libraries/catch2 { };
catdoc = callPackage ../tools/text/catdoc { };
catdocx = callPackage ../tools/text/catdocx { };