2019-06-16 19:59:06 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "catch2";
|
2019-10-21 14:08:23 +00:00
|
|
|
version = "2.10.0";
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "catchorg";
|
|
|
|
repo = "Catch2";
|
|
|
|
rev = "v${version}";
|
2019-10-21 14:08:23 +00:00
|
|
|
sha256="1mc6zix3hk3ggpihmdd4y0xvq3qvdw9c1arwnmi4nf3g4693k97r";
|
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 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 ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|