mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "cxxtest";
|
|
version = "4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CxxTest";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/python";
|
|
|
|
nativeCheckInputs = [ python3Packages.ply ];
|
|
|
|
preCheck = ''
|
|
cd ../
|
|
'';
|
|
|
|
postCheck = ''
|
|
cd python3
|
|
python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../../test/GoodSuite.h
|
|
$CXX -I../../ -o build/GoodSuite build/GoodSuite.cpp
|
|
build/GoodSuite
|
|
'';
|
|
|
|
preInstall = ''
|
|
cd python3
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/include"
|
|
cp -r ../../cxxtest "$out/include"
|
|
'';
|
|
|
|
dontWrapPythonPrograms = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://cxxtest.com";
|
|
description = "Unit testing framework for C++";
|
|
mainProgram = "cxxtestgen";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ juliendehos ];
|
|
};
|
|
}
|