2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "catch2";
|
2021-01-18 12:15:03 +00:00
|
|
|
version = "2.13.4";
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "catchorg";
|
|
|
|
repo = "Catch2";
|
|
|
|
rev = "v${version}";
|
2021-01-18 12:15:03 +00:00
|
|
|
sha256="sha256-8tR8MCFYK5XXtJQaIuZ59PJ3h3UYbfXKkaOfcBRt1Xo=";
|
2018-11-10 02:26:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2019-02-22 01:51:58 +00:00
|
|
|
cmakeFlags = [ "-H.." ];
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
|
2019-10-12 18:33:32 +01:00
|
|
|
homepage = "http://catch-lib.net";
|
2018-11-10 02:26:34 +00:00
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ edwtjo knedlsepp ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|