Use more flags when building with default.nix
This commit is contained in:
parent
1fe7714c6b
commit
864c515469
|
@ -1,2 +1,9 @@
|
||||||
with import ./nix/common.nix;
|
with import ./nix/common.nix;
|
||||||
haskell.callCabal2nix "byg" ./. { }
|
pkgs.haskell.lib.overrideCabal
|
||||||
|
(haskell.callCabal2nix "byg" ./. { })
|
||||||
|
(_: {
|
||||||
|
configureFlags = [
|
||||||
|
"--ghc-option=-Werror"
|
||||||
|
"--ghc-option=-O2"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue