core/pkgs/by-name/ca/catch2/default.nix

27 lines
657 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "catch2";
version = "2.13.10";
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
2024-05-13 21:24:10 +00:00
sha256 = "sha256-XnT2ziES94Y4uzWmaxSw7nWegJFQjAqFUG8PkwK5nLU=";
2024-05-02 00:46:19 +00:00
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-H.." ];
meta = with lib; {
2024-05-13 21:24:10 +00:00
description =
"A multi-paradigm automated test framework for C++ and Objective-C (and, maybe, C)";
2024-05-02 00:46:19 +00:00
homepage = "http://catch-lib.net";
license = licenses.boost;
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = with platforms; unix ++ windows;
};
}