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

                         

                    
 



                         
                                                                    

    
                                
                                 
 
                                                                                                                                   


                                
                           

                                             




                                                                               
       
                                 


                                                 

    
{ stdenv, fetchFromGitHub, cmake, boost, brigand, catch2 }:

stdenv.mkDerivation rec {
  pname = "fcppt";
  version = "3.2.2";

  src = fetchFromGitHub {
    owner = "freundlich";
    repo = "fcppt";
    rev = version;
    sha256 = "09mah52m3lih2n0swpsh8qb72yzl4nixaq99xp7wxyxxprhf4bpa";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ boost catch2 ];

  cmakeFlags = [ "-DENABLE_EXAMPLES=false" "-DENABLE_CATCH=true" "-DENABLE_TEST=true" "-DBrigand_INCLUDE_DIR=${brigand}/include" ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Freundlich's C++ toolkit";
    longDescription = ''
      Freundlich's C++ Toolkit (fcppt) is a collection of libraries focusing on
      improving general C++ code by providing better types, a strong focus on
      C++11 (non-conforming compilers are mostly not supported) and functional
      programming (which is both efficient and syntactically affordable in
      C++11).
    '';
    homepage = https://fcppt.org;
    license = licenses.boost;
    maintainers = with maintainers; [ pmiddend ];
    platforms = platforms.linux;
  };
}