default.nix: add option enableSeparateBinOutput

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

View File

@ -23,6 +23,7 @@
# Make hybrid executable that is also a shared library
, enableSharedExecutables ? false
, justStaticExecutables ? false
, enableSeparateBinOutput ? false
# Generation and installation of haddock API documentation
, doHaddock ? false
# Generation and installation of a coverage report. See https://wiki.haskell.org/Haskell_program_coverage
@ -142,6 +143,7 @@ let
inherit enableSharedLibraries;
inherit enableStaticLibraries;
inherit enableSharedExecutables;
inherit enableSeparateBinOutput;
inherit doBenchmark;
inherit doCoverage;
inherit doHaddock;