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

34 lines
676 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
2024-05-02 00:46:19 +00:00
stdenv.mkDerivation rec {
pname = "catch2";
version = "2.13.10";
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
2024-06-30 08:16:52 +00:00
sha256 = "sha256-XnT2ziES94Y4uzWmaxSw7nWegJFQjAqFUG8PkwK5nLU=";
2024-05-02 00:46:19 +00:00
};
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;
2024-06-30 08:16:52 +00:00
maintainers = with maintainers; [
edwtjo
knedlsepp
];
2024-05-02 00:46:19 +00:00
platforms = with platforms; unix ++ windows;
};
}