cxxtest: package includes and run tests
This commit is contained in:
parent
8b6e9818a5
commit
51af90bc62
@ -1,10 +1,8 @@
|
|||||||
{ stdenv, fetchFromGitHub, python2Packages}:
|
{ stdenv, buildPythonApplication, fetchFromGitHub }:
|
||||||
|
|
||||||
let
|
buildPythonApplication rec {
|
||||||
pname = "cxxtest";
|
pname = "cxxtest";
|
||||||
version = "4.4";
|
version = "4.4";
|
||||||
in python2Packages.buildPythonApplication {
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "CxxTest";
|
owner = "CxxTest";
|
||||||
@ -13,16 +11,26 @@ in python2Packages.buildPythonApplication {
|
|||||||
sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
|
sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
|
||||||
};
|
};
|
||||||
|
|
||||||
setSourceRoot = ''
|
sourceRoot = "source/python";
|
||||||
sourceRoot=$(echo */python)
|
|
||||||
|
postCheck = ''
|
||||||
|
python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../test/GoodSuite.h
|
||||||
|
$CXX -I.. -o build/GoodSuite build/GoodSuite.cpp
|
||||||
|
build/GoodSuite
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p "$out/include"
|
||||||
|
cp -r ../cxxtest "$out/include"
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontWrapPythonPrograms = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://cxxtest.com";
|
homepage = "http://cxxtest.com";
|
||||||
description = "Unit testing framework for C++";
|
description = "Unit testing framework for C++";
|
||||||
platforms = platforms.unix ;
|
platforms = platforms.unix;
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3;
|
||||||
maintainers = [ maintainers.juliendehos ];
|
maintainers = [ maintainers.juliendehos ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11736,7 +11736,7 @@ in
|
|||||||
|
|
||||||
cxx-prettyprint = callPackage ../development/libraries/cxx-prettyprint { };
|
cxx-prettyprint = callPackage ../development/libraries/cxx-prettyprint { };
|
||||||
|
|
||||||
cxxtest = callPackage ../development/libraries/cxxtest { };
|
cxxtest = python2Packages.callPackage ../development/libraries/cxxtest { };
|
||||||
|
|
||||||
cypress = callPackage ../development/web/cypress { };
|
cypress = callPackage ../development/web/cypress { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user