2018-11-10 02:26:34 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "catch2-${version}";
|
2019-02-16 17:09:17 +00:00
|
|
|
version = "2.6.0";
|
2018-11-10 02:26:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "catchorg";
|
|
|
|
repo = "Catch2";
|
|
|
|
rev = "v${version}";
|
2019-02-16 17:09:17 +00:00
|
|
|
sha256="1p2y6fhxfmb48nl03xdg62nfrwssaaiw10vzr194z6srcj90n2r7";
|
2018-11-10 02:26:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|