We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53070b6 commit 1c6abadCopy full SHA for 1c6abad
flake.nix
@@ -95,6 +95,12 @@
95
substituteInPlace crypton-x509-system.cabal --replace 'Crypt32' 'crypt32'
96
'';
97
}
98
+ # On Windows cross-compile a `basement` hsc2hs file generates a pointer to int
99
+ # conversion error.
100
+ ({pkgs, ...}: lib.mkIf pkgs.stdenv.hostPlatform.isWindows {
101
+ packages.basement.configureFlags = [ "--hsc2hs-option=--cflag=-Wno-int-conversion" ];
102
+ })
103
+
104
];
105
});
106
# ... and construct a flake from the cabal project
0 commit comments