nixpkgs/pkgs/development/libraries/catch2/default.nix

26 lines
640 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake }:
2018-11-10 03:26:34 +01:00
stdenv.mkDerivation rec {
pname = "catch2";
2020-11-11 01:07:43 +01:00
version = "2.13.3";
2018-11-10 03:26:34 +01:00
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
2020-11-11 01:07:43 +01:00
sha256="0m7pwsam1nb93akgnf5fxi737pgbrbcj0y28bavhzcss7yrm4gys";
2018-11-10 03:26:34 +01:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-H.." ];
2018-11-10 03:26:34 +01:00
meta = with stdenv.lib; {
description = "A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
homepage = "http://catch-lib.net";
2018-11-10 03:26:34 +01:00
license = licenses.boost;
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = with platforms; unix;
};
}