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

                         
                   
                     




                         
                                                                 



                                
                          
 
                    
                                                                                                      
                                      




                                                         
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "catch2";
  version = "2.13.8";

  src = fetchFromGitHub {
    owner = "catchorg";
    repo = "Catch2";
    rev = "v${version}";
    sha256="sha256-jOA2TxDgaJUJ2Jn7dVGZUbjmphTDuVZahzSaxfJpRqE=";
  };

  nativeBuildInputs = [ cmake ];

  cmakeFlags = [ "-H.." ];

  meta = with 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;
  };
}