|
6 | 6 | module Distribution.Nixpkgs.Haskell.Derivation
|
7 | 7 | ( Derivation, nullDerivation, pkgid, revision, src, subpath, isLibrary, isExecutable
|
8 | 8 | , extraFunctionArgs, libraryDepends, executableDepends, testDepends, configureFlags
|
9 |
| - , cabalFlags, runHaddock, jailbreak, doCheck, doBenchmark, testTarget, hyperlinkSource, enableSplitObjs |
| 9 | + , cabalFlags, runHaddock, jailbreak, doCheck, doBenchmark, testTarget, hyperlinkSource |
10 | 10 | , enableLibraryProfiling, enableExecutableProfiling, phaseOverrides, editedCabalFile, metaSection
|
11 | 11 | , dependencies, setupDepends, benchmarkDepends, enableSeparateDataOutput, extraAttributes
|
12 | 12 | )
|
@@ -60,7 +60,6 @@ data Derivation = MkDerivation
|
60 | 60 | , _hyperlinkSource :: Bool
|
61 | 61 | , _enableLibraryProfiling :: Bool
|
62 | 62 | , _enableExecutableProfiling :: Bool
|
63 |
| - , _enableSplitObjs :: Bool |
64 | 63 | , _phaseOverrides :: String
|
65 | 64 | , _editedCabalFile :: String
|
66 | 65 | , _enableSeparateDataOutput :: Bool
|
@@ -93,7 +92,6 @@ nullDerivation = MkDerivation
|
93 | 92 | , _hyperlinkSource = error "undefined Derivation.hyperlinkSource"
|
94 | 93 | , _enableLibraryProfiling = error "undefined Derivation.enableLibraryProfiling"
|
95 | 94 | , _enableExecutableProfiling = error "undefined Derivation.enableExecutableProfiling"
|
96 |
| - , _enableSplitObjs = error "undefined Derivation.enableSplitObjs" |
97 | 95 | , _phaseOverrides = error "undefined Derivation.phaseOverrides"
|
98 | 96 | , _editedCabalFile = error "undefined Derivation.editedCabalFile"
|
99 | 97 | , _enableSeparateDataOutput = error "undefined Derivation.enableSeparateDataOutput"
|
@@ -130,7 +128,6 @@ instance Pretty Derivation where
|
130 | 128 | , onlyIf (_benchmarkDepends /= mempty) $ pPrintBuildInfo "benchmark" _benchmarkDepends
|
131 | 129 | , boolattr "enableLibraryProfiling" _enableLibraryProfiling _enableLibraryProfiling
|
132 | 130 | , boolattr "enableExecutableProfiling" _enableExecutableProfiling _enableExecutableProfiling
|
133 |
| - , boolattr "enableSplitObjs" (not _enableSplitObjs) _enableSplitObjs |
134 | 131 | , boolattr "doHaddock" (not _runHaddock) _runHaddock
|
135 | 132 | , boolattr "jailbreak" _jailbreak _jailbreak
|
136 | 133 | , boolattr "doCheck" (not _doCheck) _doCheck
|
|
0 commit comments