20
20
ghc = if enableDWARF then defaults . ghc . dwarf else defaults . ghc ;
21
21
22
22
inherit ( configFiles ) targetPrefix ghcCommand ghcCommandCaps packageCfgDir ;
23
- libDir = "$out /${ configFiles . libDir } " ;
24
- docDir = "$out /share/doc/ghc/html" ;
23
+ libDir = "$wrappedGhc /${ configFiles . libDir } " ;
24
+ docDir = "$wrappedGhc /share/doc/ghc/html" ;
25
25
# For musl we can use haddock from the buildGHC
26
26
haddock = if stdenv . hostPlatform . isLinux && stdenv . targetPlatform . isMusl && ! haskellLib . isNativeMusl
27
27
then ghc . buildGHC
28
28
else ghc ;
29
29
30
- in runCommand "${ componentName } -${ ghc . name } -env" {
31
- preferLocalBuild = true ;
32
- passthru = {
33
- inherit ( ghc ) version meta ;
34
- inherit targetPrefix ;
35
- baseGhc = ghc ;
36
- } ;
37
- } (
38
- ''
30
+ script = ''
39
31
. ${ makeWrapper } /nix-support/setup-hook
40
32
41
33
''
42
34
# Start with a ghc and remove all of the package directories
43
35
+ ''
44
- mkdir -p $out /bin
45
- ${ lndir } /bin/lndir -silent ${ ghc } $out
36
+ mkdir -p $wrappedGhc /bin
37
+ ${ lndir } /bin/lndir -silent ${ ghc } $wrappedGhc
46
38
rm -rf ${ libDir } /*/
47
39
''
48
40
# ... but retain the lib/ghc/bin directory. This contains `unlit' and friends.
@@ -63,7 +55,7 @@ in runCommand "${componentName}-${ghc.name}-env" {
63
55
''
64
56
# Replace the package database with the one from target package config.
65
57
+ ''
66
- ln -s ${ configFiles } /${ packageCfgDir } $out /${ packageCfgDir }
58
+ ln -s $configFiles/${ packageCfgDir } $wrappedGhc /${ packageCfgDir }
67
59
68
60
''
69
61
# Set the GHC_PLUGINS environment variable according to the plugins for the component.
@@ -104,11 +96,11 @@ in runCommand "${componentName}-${ghc.name}-env" {
104
96
+ ''
105
97
for prg in ${ ghcCommand } ${ ghcCommand } i ${ ghcCommand } -${ ghc . version } ${ ghcCommand } i-${ ghc . version } ; do
106
98
if [[ -x "${ ghc } /bin/$prg" ]]; then
107
- rm -f $out /bin/$prg
108
- makeWrapper ${ ghc } /bin/$prg $out /bin/$prg \
99
+ rm -f $wrappedGhc /bin/$prg
100
+ makeWrapper ${ ghc } /bin/$prg $wrappedGhc /bin/$prg \
109
101
--add-flags '"-B$NIX_${ ghcCommandCaps } _LIBDIR"' \
110
- --set "NIX_${ ghcCommandCaps } " "$out /bin/${ ghcCommand } " \
111
- --set "NIX_${ ghcCommandCaps } PKG" "$out /bin/${ ghcCommand } -pkg" \
102
+ --set "NIX_${ ghcCommandCaps } " "$wrappedGhc /bin/${ ghcCommand } " \
103
+ --set "NIX_${ ghcCommandCaps } PKG" "$wrappedGhc /bin/${ ghcCommand } -pkg" \
112
104
--set "NIX_${ ghcCommandCaps } _DOCDIR" "${ docDir } " \
113
105
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
114
106
--set "NIX_${ ghcCommandCaps } _LIBDIR" "${ libDir } "
@@ -117,11 +109,11 @@ in runCommand "${componentName}-${ghc.name}-env" {
117
109
118
110
for prg in "${ targetPrefix } runghc" "${ targetPrefix } runhaskell"; do
119
111
if [[ -x "${ ghc } /bin/$prg" ]]; then
120
- rm -f $out /bin/$prg
121
- makeWrapper ${ ghc } /bin/$prg $out /bin/$prg \
122
- --add-flags "-f $out /bin/${ ghcCommand } " \
123
- --set "NIX_${ ghcCommandCaps } " "$out /bin/${ ghcCommand } " \
124
- --set "NIX_${ ghcCommandCaps } PKG" "$out /bin/${ ghcCommand } -pkg" \
112
+ rm -f $wrappedGhc /bin/$prg
113
+ makeWrapper ${ ghc } /bin/$prg $wrappedGhc /bin/$prg \
114
+ --add-flags "-f $wrappedGhc /bin/${ ghcCommand } " \
115
+ --set "NIX_${ ghcCommandCaps } " "$wrappedGhc /bin/${ ghcCommand } " \
116
+ --set "NIX_${ ghcCommandCaps } PKG" "$wrappedGhc /bin/${ ghcCommand } -pkg" \
125
117
--set "NIX_${ ghcCommandCaps } _DOCDIR" "${ docDir } " \
126
118
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
127
119
--set "NIX_${ ghcCommandCaps } _LIBDIR" "${ libDir } "
@@ -132,8 +124,8 @@ in runCommand "${componentName}-${ghc.name}-env" {
132
124
# Wrap haddock, if the base GHC provides it.
133
125
+ ''
134
126
if [[ -x "${ haddock } /bin/haddock" ]]; then
135
- rm -f $out /bin/haddock
136
- makeWrapper ${ haddock } /bin/haddock $out /bin/haddock \
127
+ rm -f $wrappedGhc /bin/haddock
128
+ makeWrapper ${ haddock } /bin/haddock $wrappedGhc /bin/haddock \
137
129
--add-flags '"-B$NIX_${ ghcCommandCaps } _LIBDIR"' \
138
130
--set "NIX_${ ghcCommandCaps } _LIBDIR" "${ libDir } "
139
131
fi
@@ -144,11 +136,30 @@ in runCommand "${componentName}-${ghc.name}-env" {
144
136
+ ''
145
137
for prg in ${ ghcCommand } -pkg ${ ghcCommand } -pkg-${ ghc . version } ; do
146
138
if [[ -x "${ ghc } /bin/$prg" ]]; then
147
- rm -f $out /bin/$prg
148
- makeWrapper ${ ghc } /bin/$prg $out /bin/$prg --add-flags "--global-package-db=$out /${ packageCfgDir } "
139
+ rm -f $wrappedGhc /bin/$prg
140
+ makeWrapper ${ ghc } /bin/$prg $wrappedGhc /bin/$prg --add-flags "--global-package-db=$wrappedGhc /${ packageCfgDir } "
149
141
fi
150
142
done
151
143
152
144
${ postInstall }
153
- ''
154
- )
145
+ '' ;
146
+
147
+ drv = runCommand "${ componentName } -${ ghc . name } -env" {
148
+ preferLocalBuild = true ;
149
+ passthru = {
150
+ inherit script targetPrefix ;
151
+ inherit ( ghc ) version meta ;
152
+ } ;
153
+ propagatedBuildInputs = configFiles . libDeps ;
154
+ nativeBuildInputs = [ ghc ] ;
155
+ } ( ''
156
+ mkdir -p $out/configFiles
157
+ configFiles=$out/configFiles
158
+ ${ configFiles . script }
159
+ wrappedGhc=$out
160
+ ${ script }
161
+ '' ) ;
162
+ in {
163
+ inherit script drv targetPrefix ;
164
+ baseGhc = ghc ;
165
+ }
0 commit comments