default.nix: rm doStrict (superceeded by failOnAllWarnings)

M  default.nix
This commit is contained in:
Anton-Latukha 2020-06-03 20:48:06 +03:00
parent 58e9a85029
commit c5dbaf9651
No known key found for this signature in database
GPG Key ID: 3D84C07E91802E41
1 changed files with 0 additions and 2 deletions

View File

@ -25,7 +25,6 @@
, doTracing ? false
# Enables GHC optimizations for production use, without optimizations compilation is way faster
, doOptimize ? false
, doStrict ? false
# Include DWARF debugging information & abilities
, enableDWARFDebugging ? true
# Strip results from all debugging symbols
@ -230,7 +229,6 @@ let
configureFlags =
pkgs.stdenv.lib.optional doTracing "--flags=tracing"
++ pkgs.stdenv.lib.optional doOptimize "--flags=optimize"
++ pkgs.stdenv.lib.optional doStrict "--ghc-options=-Werror";
passthru = {
nixpkgs = pkgs;