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 6dbe803 commit 3cb92f2Copy full SHA for 3cb92f2
nix/project.nix
@@ -96,6 +96,15 @@ let
96
plutus-tx-plugin.ghcOptions = [ "-Werror" ];
97
};
98
}
99
+ ({ lib, pkgs, ... }: lib.mkIf (pkgs.stdenv.hostPlatform.isWindows) {
100
+ # This fixed basement compilation error on Windows (ref: https://ci.iog.io/build/8529222/nixlog/1)
101
+ # ```
102
+ # Preprocessing library for basement-0.0.16...
103
+ # Size.hsc:126:30: error: initialization of ‘long long int’ from ‘void *’ makes integer from pointer without a cast []
104
+ # compilation failed
105
106
+ packages.basement.configureFlags = [ "--hsc2hs-option=--cflag=-Wno-int-conversion" ];
107
+ })
108
];
109
});
110
in
0 commit comments