libgnurx: output libgnurx.a when static

+5
+5
pkgs/os-specific/windows/libgnurx/default.nix
··· 10 sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi"; 11 }; 12 13 meta = { 14 platforms = lib.platforms.windows; 15 };
··· 10 sha256 = "0xjxcxgws3bblybw5zsp9a4naz2v5bs1k3mk8dw00ggc0vwbfivi"; 11 }; 12 13 + # file looks for libgnurx.a when compiling statically 14 + postInstall = lib.optionalString stdenv.hostPlatform.isStatic '' 15 + ln -s $out/lib/libgnurx{.dll.a,.a} 16 + ''; 17 + 18 meta = { 19 platforms = lib.platforms.windows; 20 };