-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathghc-for-component-wrapper.nix
174 lines (160 loc) · 6.88 KB
/
ghc-for-component-wrapper.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# The ghcForComponent function wraps ghc so that it is configured with
# the package database of all dependencies of a given component.
# It has been adapted from the ghcWithPackages wrapper in nixpkgs.
#
# This wrapper exists so that nix-shells for components will have a
# GHC automatically configured with the dependencies in the package
# database.
{ lib, stdenv, ghc, runCommand, lndir, makeWrapper, haskellLib
}@defaults:
{ componentName # Full derivation name of the component
, configFiles # The component's "config" derivation
, postInstall ? ""
, enableDWARF
, plugins
}:
let
ghc = if enableDWARF then defaults.ghc.dwarf else defaults.ghc;
inherit (configFiles) targetPrefix ghcCommand ghcCommandCaps packageCfgDir;
libDir = "$wrappedGhc/${configFiles.libDir}";
docDir = "$wrappedGhc/share/doc/ghc/html";
# For musl we can use haddock from the buildGHC
haddock = if stdenv.targetPlatform.isMusl
then ghc.buildGHC
else ghc;
script = ''
. ${makeWrapper}/nix-support/setup-hook
''
# Start with a ghc and remove all of the package directories
+ ''
mkdir -p $wrappedGhc/bin
${lndir}/bin/lndir -silent $unwrappedGhc $wrappedGhc
rm -rf ${libDir}/*/
''
# ... but retain the lib/ghc/bin directory. This contains `unlit' and friends.
+ ''
if [ -d $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/bin ]; then
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/bin ${libDir}
else
ln -s $unwrappedGhc/lib/bin ${libDir}
fi
''
# ... and the ghcjs shim's if they are available ...
+ ''
if [ -d $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/shims ]; then
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/shims ${libDir}
fi
''
# ... and node modules ...
+ ''
if [ -d $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/ghcjs-node ]; then
ln -s $unwrappedGhc/lib/${ghcCommand}-${ghc.version}/ghcjs-node ${libDir}
fi
''
# Replace the package database with the one from target package config.
+ ''
ln -s $configFiles/${packageCfgDir} $wrappedGhc/${packageCfgDir}
''
# Set the GHC_PLUGINS environment variable according to the plugins for the component.
# GHC will automatically load the relevant symbols from the given libraries and
# initialize them with the given arguments.
#
# GHC_PLUGINS is a `read`able [(FilePath,String,String,[String])], where the
# first component is a path to the shared library, the second is the package ID,
# the third is the module name, and the fourth is the plugin arguments.
+ ''
GHC_PLUGINS="["
LIST_PREFIX=""
${builtins.concatStringsSep "\n" (map (plugin: ''
id=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} id --simple-output)
lib_dir=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} dynamic-library-dirs --simple-output)
lib_base=$($unwrappedGhc/bin/ghc-pkg --package-db ${plugin.library}/package.conf.d field ${plugin.library.package.identifier.name} hs-libraries --simple-output)
lib="$(echo ''${lib_dir}/lib''${lib_base}*)"
GHC_PLUGINS="''${GHC_PLUGINS}''${LIST_PREFIX}(\"''${lib}\",\"''${id}\",\"${plugin.moduleName}\",["
LIST_PREFIX=""
${builtins.concatStringsSep "\n" (map (arg: ''
GHC_PLUGINS="''${GHC_PLUGINS}''${LIST_PREFIX}\"${arg}\""
LIST_PREFIX=","
'') plugin.args)}
GHC_PLUGINS="''${GHC_PLUGINS}])"
LIST_PREFIX=","
'') plugins)}
GHC_PLUGINS="''${GHC_PLUGINS}]"
''
# now the tricky bit. For GHCJS (to make plugins work), we need a special
# file called ghc_libdir. That points to the build ghc's lib.
+ ''
echo "${ghc.buildGHC or ghc}/lib/${(ghc.buildGHC or ghc).name}" > "${libDir}/ghc_libdir"
''
# Wrap compiler executables with correct env variables.
# The NIX_ variables are used by the patched Paths_ghc module.
+ ''
for prg in ${ghcCommand} ${ghcCommand}i ${ghcCommand}-${ghc.version} ${ghcCommand}i-${ghc.version}; do
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
rm -f $wrappedGhc/bin/$prg
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg \
--add-flags '"-B$NIX_${ghcCommandCaps}_LIBDIR"' \
--set "NIX_${ghcCommandCaps}" "$wrappedGhc/bin/${ghcCommand}" \
--set "NIX_${ghcCommandCaps}PKG" "$wrappedGhc/bin/${ghcCommand}-pkg" \
--set "NIX_${ghcCommandCaps}_DOCDIR" "${docDir}" \
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
fi
done
for prg in "${targetPrefix}runghc" "${targetPrefix}runhaskell"; do
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
rm -f $wrappedGhc/bin/$prg
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg \
--add-flags "-f $wrappedGhc/bin/${ghcCommand}" \
--set "NIX_${ghcCommandCaps}" "$wrappedGhc/bin/${ghcCommand}" \
--set "NIX_${ghcCommandCaps}PKG" "$wrappedGhc/bin/${ghcCommand}-pkg" \
--set "NIX_${ghcCommandCaps}_DOCDIR" "${docDir}" \
--set "GHC_PLUGINS" "$GHC_PLUGINS" \
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
fi
done
''
+ lib.optionalString (haskellLib.isNativeMusl && builtins.compareVersions ghc.version "9.9" >0) ''
ln -s $wrappedGhc/bin/${targetPrefix}unlit $wrappedGhc/bin/unlit
ln -s $wrappedGhc/bin/${ghcCommand}-iserv $wrappedGhc/bin/ghc-iserv
ln -s $wrappedGhc/bin/${ghcCommand}-iserv-prof $wrappedGhc/bin/ghc-iserv-prof
''
# Wrap haddock, if the base GHC provides it.
+ ''
if [[ -x "${haddock}/bin/haddock" ]]; then
rm -f $wrappedGhc/bin/haddock
makeWrapper ${haddock}/bin/haddock $wrappedGhc/bin/haddock \
--add-flags '"-B$NIX_${ghcCommandCaps}_LIBDIR"' \
--set "NIX_${ghcCommandCaps}_LIBDIR" "${libDir}"
fi
''
# Point ghc-pkg to the package database of the component using the
# --global-package-db flag.
+ ''
for prg in ${ghcCommand}-pkg ${ghcCommand}-pkg-${ghc.version}; do
if [[ -x "$unwrappedGhc/bin/$prg" ]]; then
rm -f $wrappedGhc/bin/$prg
makeWrapper $unwrappedGhc/bin/$prg $wrappedGhc/bin/$prg --add-flags "--global-package-db=$wrappedGhc/${packageCfgDir}"
fi
done
${postInstall}
'';
drv = runCommand "${componentName}-${ghc.name}-env" {
preferLocalBuild = true;
passthru = {
inherit script targetPrefix;
inherit (ghc) version meta;
};
propagatedBuildInputs = configFiles.libDeps;
nativeBuildInputs = [ghc];
} (''
mkdir -p $out/configFiles
configFiles=$out/configFiles
${configFiles.script}
wrappedGhc=$out
${script}
'');
in {
inherit script drv targetPrefix;
baseGhc = ghc;
}