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

51 lines
1.4 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
python3,
2024-05-02 00:46:19 +00:00
}:
stdenv.mkDerivation rec {
pname = "catch2";
version = "3.5.2";
src = fetchFromGitHub {
owner = "catchorg";
repo = "Catch2";
rev = "v${version}";
hash = "sha256-xGPfXjk+oOnR7JqTrZd2pKJxalrlS8CMs7HWDClXaS8=";
};
2024-06-30 08:16:52 +00:00
nativeBuildInputs = [ cmake ];
2024-05-02 00:46:19 +00:00
hardeningDisable = [ "trivialautovarinit" ];
2024-06-30 08:16:52 +00:00
cmakeFlags =
[
"-DCATCH_DEVELOPMENT_BUILD=ON"
"-DCATCH_BUILD_TESTING=${if doCheck then "ON" else "OFF"}"
]
++ lib.optionals (stdenv.isDarwin && doCheck) [
# test has a faulty path normalization technique that won't work in
# our darwin build environment https://github.com/catchorg/Catch2/issues/1691
"-DCMAKE_CTEST_ARGUMENTS=-E;ApprovalTests"
];
2024-05-02 00:46:19 +00:00
# Tests fail on x86_32 if compiled with x87 floats: https://github.com/catchorg/Catch2/issues/2796
2024-06-30 08:16:52 +00:00
env = lib.optionalAttrs stdenv.isx86_32 { NIX_CFLAGS_COMPILE = "-msse2 -mfpmath=sse"; };
2024-05-02 00:46:19 +00:00
doCheck = true;
2024-06-30 08:16:52 +00:00
nativeCheckInputs = [ python3 ];
2024-05-02 00:46:19 +00:00
meta = {
description = "Modern, C++-native, test framework for unit-tests";
homepage = "https://github.com/catchorg/Catch2";
changelog = "https://github.com/catchorg/Catch2/blob/${src.rev}/docs/release-notes.md";
license = lib.licenses.boost;
maintainers = with lib.maintainers; [ dotlambda ];
platforms = with lib.platforms; unix ++ windows;
};
}