From 22a509e7cea9e82168e5032a3ffe4af18708bd1b Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 2 Dec 2021 22:29:42 +0800 Subject: [PATCH] flake: add Hydra job for Windows build This is a proof-of-concept; it works but requires manual fiddling with DLLs (e.g. copy them from the Nix store into the Windows environment), and LLD is not available on Windows. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index ebbe3437..0b8e61d8 100644 --- a/flake.nix +++ b/flake.nix @@ -115,6 +115,7 @@ hydraJobs = { inherit (packages.x86_64-linux) nac3artiq; + mingw-nac3artiq = packages.x86_64-w64-mingw32.nac3artiq; } // (pkgs.lib.foldr (a: b: {"${pkgs.lib.strings.getName a}" = a;} // b) {} devShell.x86_64-linux.buildInputs); };