summary refs log blame commit diff
path: root/pkgs/development/libraries/cxxtest/default.nix
blob: 3469cda3fc703832f50e676e03ef6697f6a75b0a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                 
 
                            
                    
                  


                         
                 



                                                                    










                                                                                        
     
 

                                
                    
                                    
                                                   
                               



                                              
{ lib, buildPythonApplication, fetchFromGitHub }:

buildPythonApplication rec {
  pname = "cxxtest";
  version = "4.4";

  src = fetchFromGitHub {
    owner = "CxxTest";
    repo = pname;
    rev = version;
    sha256 = "19w92kipfhp5wvs47l0qpibn3x49sbmvkk91yxw6nwk6fafcdl17";
  };

  sourceRoot = "source/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 lib; {
    homepage = "http://cxxtest.com";
    description = "Unit testing framework for C++";
    platforms = platforms.unix;
    license = licenses.lgpl3;
    maintainers = [ maintainers.juliendehos ];
  };
}