2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "catch2";
|
2022-10-17 12:34:54 +00:00
|
|
|
version = "2.13.10";
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "catchorg";
|
|
|
|
repo = "Catch2";
|
|
|
|
rev = "v${version}";
|
2022-10-17 12:34:54 +00:00
|
|
|
sha256="sha256-XnT2ziES94Y4uzWmaxSw7nWegJFQjAqFUG8PkwK5nLU=";
|
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
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-11-10 02:26:34 +00:00
|
|
|
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
|
2019-10-12 17:33:32 +00:00
|
|
|
homepage = "http://catch-lib.net";
|
2018-11-10 02:26:34 +00:00
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ edwtjo knedlsepp ];
|
2022-06-30 13:35:48 +00:00
|
|
|
platforms = platforms.unix ++ [ "x86_64-windows" ];
|
2018-11-10 02:26:34 +00:00
|
|
|
};
|
|
|
|
}
|