10 lines
198 B
Nix
10 lines
198 B
Nix
with import ./nix/common.nix;
|
|
pkgs.haskell.lib.overrideCabal
|
|
(haskell.callCabal2nix "byg" ./. { })
|
|
(_: {
|
|
configureFlags = [
|
|
"--ghc-option=-Werror"
|
|
"--ghc-option=-O2"
|
|
];
|
|
})
|