From 6315027a8bd6ac899d31dd0789c3b42ae14193ca Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 2 Dec 2021 22:24:23 +0800 Subject: [PATCH] flake: use *.pyd for Windows Python module --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1a6c8d8d..ebbe3437 100644 --- a/flake.nix +++ b/flake.nix @@ -90,7 +90,7 @@ installPhase = '' mkdir -p $out - cp target/x86_64-pc-windows-gnu/release/nac3artiq.dll $out + cp target/x86_64-pc-windows-gnu/release/nac3artiq.dll $out/nac3artiq.pyd ''; meta.platforms = ["x86_64-windows"]; }