Merge pull request #282443 from panicgh/catch2-windows

catch2, catch2_3: build on windows
This commit is contained in:
Robert Schütz 2024-01-29 02:48:50 +00:00 committed by GitHub
commit b7eef5a9d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/catchorg/Catch2/blob/${src.rev}/docs/release-notes.md";
license = lib.licenses.boost;
maintainers = with lib.maintainers; [ dotlambda ];
platforms = lib.platforms.unix;
platforms = with lib.platforms; unix ++ windows;
};
}

View File

@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
homepage = "http://catch-lib.net";
license = licenses.boost;
maintainers = with maintainers; [ edwtjo knedlsepp ];
platforms = platforms.unix ++ [ "x86_64-windows" ];
platforms = with platforms; unix ++ windows;
};
}