From d2932553d15eb0669535979f5dd2cd85061979e6 Mon Sep 17 00:00:00 2001 From: Nicolas Benes Date: Sun, 21 Jan 2024 00:36:59 +0100 Subject: [PATCH] catch2: enable build for i686-windows --- pkgs/development/libraries/catch2/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/catch2/default.nix b/pkgs/development/libraries/catch2/default.nix index 3c51fa9371d9..56b2016539be 100644 --- a/pkgs/development/libraries/catch2/default.nix +++ b/pkgs/development/libraries/catch2/default.nix @@ -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; }; }