2015-01-07 19:31:32 +00:00
|
|
|
{ stdenv, fetchurl, ghc, pkgconfig, glibcLocales, coreutils, gnugrep, gnused
|
2017-04-14 04:21:38 +00:00
|
|
|
, jailbreak-cabal, hscolour, cpphs, nodejs, lib
|
2016-11-18 15:44:53 +00:00
|
|
|
}: let isCross = (ghc.cross or null) != null; in
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
{ pname
|
2016-01-24 22:12:03 +00:00
|
|
|
, dontStrip ? (ghc.isGhcjs or false)
|
2015-03-24 19:09:49 +00:00
|
|
|
, version, revision ? null
|
2015-01-10 08:12:37 +00:00
|
|
|
, sha256 ? null
|
2015-01-07 19:31:32 +00:00
|
|
|
, src ? fetchurl { url = "mirror://hackage/${pname}-${version}.tar.gz"; inherit sha256; }
|
2016-06-09 21:27:57 +00:00
|
|
|
, buildDepends ? [], setupHaskellDepends ? [], libraryHaskellDepends ? [], executableHaskellDepends ? []
|
2015-01-16 19:54:35 +00:00
|
|
|
, buildTarget ? ""
|
2017-02-28 09:27:29 +00:00
|
|
|
, buildTools ? [], libraryToolDepends ? [], executableToolDepends ? [], testToolDepends ? [], benchmarkToolDepends ? []
|
2015-01-10 08:12:37 +00:00
|
|
|
, configureFlags ? []
|
|
|
|
, description ? ""
|
2016-11-18 15:44:53 +00:00
|
|
|
, doCheck ? !isCross && (stdenv.lib.versionOlder "7.4" ghc.version)
|
2017-02-28 09:27:29 +00:00
|
|
|
, withBenchmarkDepends ? false
|
2015-01-09 18:35:17 +00:00
|
|
|
, doHoogle ? true
|
2015-01-10 08:12:37 +00:00
|
|
|
, editedCabalFile ? null
|
2015-01-07 19:31:32 +00:00
|
|
|
, enableLibraryProfiling ? false
|
2015-08-06 14:13:10 +00:00
|
|
|
, enableExecutableProfiling ? false
|
2016-11-18 15:44:53 +00:00
|
|
|
# TODO enable shared libs for cross-compiling
|
|
|
|
, enableSharedExecutables ? !isCross && (((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version))
|
|
|
|
, enableSharedLibraries ? !isCross && (((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version))
|
2017-01-02 16:19:28 +00:00
|
|
|
, enableSplitObjs ? null # OBSOLETE, use enableDeadCodeElimination
|
|
|
|
, enableDeadCodeElimination ? (!stdenv.isDarwin) # TODO: use -dead_strip for darwin
|
2015-01-07 19:31:32 +00:00
|
|
|
, enableStaticLibraries ? true
|
2015-06-17 14:40:21 +00:00
|
|
|
, extraLibraries ? [], librarySystemDepends ? [], executableSystemDepends ? []
|
2015-01-07 19:31:32 +00:00
|
|
|
, homepage ? "http://hackage.haskell.org/package/${pname}"
|
2015-09-02 14:51:35 +00:00
|
|
|
, platforms ? ghc.meta.platforms
|
|
|
|
, hydraPlatforms ? platforms
|
2015-01-10 08:12:37 +00:00
|
|
|
, hyperlinkSource ? true
|
|
|
|
, isExecutable ? false, isLibrary ? !isExecutable
|
|
|
|
, jailbreak ? false
|
|
|
|
, license
|
2015-01-07 19:31:32 +00:00
|
|
|
, maintainers ? []
|
2017-02-14 15:17:40 +00:00
|
|
|
, doCoverage ? false
|
2017-06-22 15:41:24 +00:00
|
|
|
, doHaddock ? !(ghc.isHaLVM or false)
|
2015-01-07 19:31:32 +00:00
|
|
|
, passthru ? {}
|
2017-02-28 09:27:29 +00:00
|
|
|
, pkgconfigDepends ? [], libraryPkgconfigDepends ? [], executablePkgconfigDepends ? [], testPkgconfigDepends ? [], benchmarkPkgconfigDepends ? []
|
2015-06-17 14:40:21 +00:00
|
|
|
, testDepends ? [], testHaskellDepends ? [], testSystemDepends ? []
|
2017-02-28 09:27:29 +00:00
|
|
|
, benchmarkDepends ? [], benchmarkHaskellDepends ? [], benchmarkSystemDepends ? []
|
2015-01-10 08:12:37 +00:00
|
|
|
, testTarget ? ""
|
|
|
|
, broken ? false
|
2016-02-18 03:07:32 +00:00
|
|
|
, preCompileBuildDriver ? "", postCompileBuildDriver ? ""
|
2015-01-19 15:24:12 +00:00
|
|
|
, preUnpack ? "", postUnpack ? ""
|
2015-04-05 07:58:37 +00:00
|
|
|
, patches ? [], patchPhase ? "", prePatch ? "", postPatch ? ""
|
2015-01-10 08:12:37 +00:00
|
|
|
, preConfigure ? "", postConfigure ? ""
|
|
|
|
, preBuild ? "", postBuild ? ""
|
2015-08-14 19:22:40 +00:00
|
|
|
, installPhase ? "", preInstall ? "", postInstall ? ""
|
2015-01-10 08:12:37 +00:00
|
|
|
, checkPhase ? "", preCheck ? "", postCheck ? ""
|
|
|
|
, preFixup ? "", postFixup ? ""
|
2015-09-09 17:58:28 +00:00
|
|
|
, shellHook ? ""
|
2015-01-13 21:15:29 +00:00
|
|
|
, coreSetup ? false # Use only core packages to build Setup.hs.
|
2015-01-15 21:36:01 +00:00
|
|
|
, useCpphs ? false
|
2017-04-14 04:21:38 +00:00
|
|
|
, hardeningDisable ? lib.optional (ghc.isHaLVM or false) "all"
|
2015-03-27 15:11:18 +00:00
|
|
|
} @ args:
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-03-24 19:09:49 +00:00
|
|
|
assert editedCabalFile != null -> revision != null;
|
2017-01-02 16:19:28 +00:00
|
|
|
# OBSOLETE, use enableDeadCodeElimination
|
|
|
|
assert enableSplitObjs == null;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-02-14 15:17:40 +00:00
|
|
|
inherit (stdenv.lib) optional optionals optionalString versionOlder versionAtLeast
|
2017-04-20 07:15:51 +00:00
|
|
|
concatStringsSep enableFeature optionalAttrs toUpper
|
|
|
|
filter makeLibraryPath;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-03-13 03:20:56 +00:00
|
|
|
isGhcjs = ghc.isGhcjs or false;
|
2017-02-04 17:19:14 +00:00
|
|
|
isHaLVM = ghc.isHaLVM or false;
|
|
|
|
packageDbFlag = if isGhcjs || isHaLVM || versionOlder "7.6" ghc.version
|
2016-02-19 16:45:45 +00:00
|
|
|
then "package-db"
|
|
|
|
else "package-conf";
|
|
|
|
|
2016-11-18 15:44:53 +00:00
|
|
|
nativeGhc = if isCross || isGhcjs then ghc.bootPkgs.ghc else ghc;
|
2016-02-19 16:45:45 +00:00
|
|
|
nativePackageDbFlag = if versionOlder "7.6" nativeGhc.version
|
|
|
|
then "package-db"
|
|
|
|
else "package-conf";
|
2015-03-13 03:20:56 +00:00
|
|
|
|
2015-04-01 11:52:21 +00:00
|
|
|
newCabalFileUrl = "http://hackage.haskell.org/package/${pname}-${version}/revision/${revision}.cabal";
|
2015-01-16 19:54:35 +00:00
|
|
|
newCabalFile = fetchurl {
|
2015-04-01 11:52:21 +00:00
|
|
|
url = newCabalFileUrl;
|
2015-01-16 19:54:35 +00:00
|
|
|
sha256 = editedCabalFile;
|
2015-03-24 19:09:49 +00:00
|
|
|
name = "${pname}-${version}-r${revision}.cabal";
|
2015-01-16 19:54:35 +00:00
|
|
|
};
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
defaultSetupHs = builtins.toFile "Setup.hs" ''
|
|
|
|
import Distribution.Simple
|
|
|
|
main = defaultMain
|
|
|
|
'';
|
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
hasActiveLibrary = isLibrary && (enableStaticLibraries || enableSharedLibraries || enableLibraryProfiling);
|
|
|
|
|
2015-06-05 21:55:01 +00:00
|
|
|
# We cannot enable -j<n> parallelism for libraries because GHC is far more
|
|
|
|
# likely to generate a non-determistic library ID in that case. Further
|
|
|
|
# details are at <https://github.com/peti/ghc-library-id-bug>.
|
2017-01-03 09:41:51 +00:00
|
|
|
enableParallelBuilding = (versionOlder "7.8" ghc.version && !hasActiveLibrary) || versionOlder "8.0.1" ghc.version;
|
2015-01-16 19:54:35 +00:00
|
|
|
|
2016-11-18 15:44:53 +00:00
|
|
|
crossCabalFlags = [
|
|
|
|
"--with-ghc=${ghc.cross.config}-ghc"
|
|
|
|
"--with-ghc-pkg=${ghc.cross.config}-ghc-pkg"
|
|
|
|
"--with-gcc=${ghc.cc}"
|
|
|
|
"--with-ld=${ghc.ld}"
|
2017-01-11 18:26:08 +00:00
|
|
|
"--with-hsc2hs=${nativeGhc}/bin/hsc2hs"
|
2017-02-04 17:19:14 +00:00
|
|
|
] ++ (if isHaLVM then [] else ["--hsc2hs-options=--cross-compile"]);
|
2016-11-18 15:44:53 +00:00
|
|
|
|
|
|
|
crossCabalFlagsString =
|
|
|
|
stdenv.lib.optionalString isCross (" " + stdenv.lib.concatStringsSep " " crossCabalFlags);
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
defaultConfigureFlags = [
|
2015-01-16 19:54:35 +00:00
|
|
|
"--verbose" "--prefix=$out" "--libdir=\\$prefix/lib/\\$compiler" "--libsubdir=\\$pkgid"
|
2017-02-04 17:19:14 +00:00
|
|
|
"--with-gcc=$CC" # Clang won't work without that extra information.
|
2015-01-16 19:54:35 +00:00
|
|
|
"--package-db=$packageConfDir"
|
|
|
|
(optionalString (enableSharedExecutables && stdenv.isLinux) "--ghc-option=-optl=-Wl,-rpath=$out/lib/${ghc.name}/${pname}-${version}")
|
|
|
|
(optionalString (enableSharedExecutables && stdenv.isDarwin) "--ghc-option=-optl=-Wl,-headerpad_max_install_names")
|
|
|
|
(optionalString enableParallelBuilding "--ghc-option=-j$NIX_BUILD_CORES")
|
2015-06-17 14:40:21 +00:00
|
|
|
(optionalString useCpphs "--with-cpphs=${cpphs}/bin/cpphs --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp")
|
2017-02-14 15:17:40 +00:00
|
|
|
(enableFeature (enableDeadCodeElimination && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
|
2015-01-07 19:31:32 +00:00
|
|
|
(enableFeature enableLibraryProfiling "library-profiling")
|
2016-01-17 09:54:04 +00:00
|
|
|
(enableFeature enableExecutableProfiling (if versionOlder ghc.version "8" then "executable-profiling" else "profiling"))
|
2015-01-07 19:31:32 +00:00
|
|
|
(enableFeature enableSharedLibraries "shared")
|
2017-02-14 15:17:40 +00:00
|
|
|
(optionalString (versionAtLeast ghc.version "7.10") (enableFeature doCoverage "coverage"))
|
2015-03-13 03:20:56 +00:00
|
|
|
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature enableStaticLibraries "library-vanilla"))
|
|
|
|
(optionalString (isGhcjs || versionOlder "7.4" ghc.version) (enableFeature enableSharedExecutables "executable-dynamic"))
|
|
|
|
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature doCheck "tests"))
|
2017-01-02 16:19:28 +00:00
|
|
|
] ++ optionals (enableDeadCodeElimination && (stdenv.lib.versionOlder "8.0.1" ghc.version)) [
|
|
|
|
"--ghc-option=-split-sections"
|
2015-03-13 03:20:56 +00:00
|
|
|
] ++ optionals isGhcjs [
|
|
|
|
"--ghcjs"
|
2016-11-18 15:44:53 +00:00
|
|
|
] ++ optionals isCross ([
|
|
|
|
"--configure-option=--host=${ghc.cross.config}"
|
|
|
|
] ++ crossCabalFlags);
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
setupCompileFlags = [
|
|
|
|
(optionalString (!coreSetup) "-${packageDbFlag}=$packageConfDir")
|
2017-03-25 04:23:01 +00:00
|
|
|
(optionalString isGhcjs "-build-runner")
|
2017-02-04 17:19:14 +00:00
|
|
|
(optionalString (isGhcjs || isHaLVM || versionOlder "7.8" ghc.version) "-j$NIX_BUILD_CORES")
|
|
|
|
# https://github.com/haskell/cabal/issues/2398
|
|
|
|
(optionalString (versionOlder "7.10" ghc.version && !isHaLVM) "-threaded")
|
2015-01-16 19:54:35 +00:00
|
|
|
];
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
isHaskellPkg = x: (x ? pname) && (x ? version) && (x ? env);
|
2015-01-10 12:23:04 +00:00
|
|
|
isSystemPkg = x: !isHaskellPkg x;
|
|
|
|
|
2015-07-23 20:16:16 +00:00
|
|
|
allPkgconfigDepends = pkgconfigDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends ++
|
2017-02-28 09:27:29 +00:00
|
|
|
optionals doCheck testPkgconfigDepends ++ optionals withBenchmarkDepends benchmarkPkgconfigDepends;
|
2015-07-23 20:16:16 +00:00
|
|
|
|
2017-07-18 18:54:10 +00:00
|
|
|
nativeBuildInputs = buildTools ++ libraryToolDepends ++ executableToolDepends;
|
2016-06-12 21:07:46 +00:00
|
|
|
propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends;
|
2017-07-18 18:54:10 +00:00
|
|
|
otherBuildInputs = setupHaskellDepends ++ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++
|
2015-07-23 20:16:16 +00:00
|
|
|
optionals (allPkgconfigDepends != []) ([pkgconfig] ++ allPkgconfigDepends) ++
|
2017-02-27 11:47:00 +00:00
|
|
|
optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testToolDepends) ++
|
2017-04-06 01:10:04 +00:00
|
|
|
# ghcjs's hsc2hs calls out to the native hsc2hs
|
|
|
|
optional isGhcjs nativeGhc ++
|
2017-02-28 09:27:29 +00:00
|
|
|
optionals withBenchmarkDepends (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkToolDepends);
|
2015-01-16 19:54:35 +00:00
|
|
|
allBuildInputs = propagatedBuildInputs ++ otherBuildInputs;
|
|
|
|
|
2015-01-10 12:23:04 +00:00
|
|
|
haskellBuildInputs = stdenv.lib.filter isHaskellPkg allBuildInputs;
|
|
|
|
systemBuildInputs = stdenv.lib.filter isSystemPkg allBuildInputs;
|
|
|
|
|
2015-01-11 10:59:47 +00:00
|
|
|
ghcEnv = ghc.withPackages (p: haskellBuildInputs);
|
|
|
|
|
2017-03-25 04:23:01 +00:00
|
|
|
setupBuilder = if isCross then "${nativeGhc}/bin/ghc" else ghcCommand;
|
2016-02-18 08:11:42 +00:00
|
|
|
setupCommand = "./Setup";
|
2017-01-22 22:05:19 +00:00
|
|
|
ghcCommand' = if isGhcjs then "ghcjs" else "ghc";
|
|
|
|
crossPrefix = if (ghc.cross or null) != null then "${ghc.cross.config}-" else "";
|
|
|
|
ghcCommand = "${crossPrefix}${ghcCommand'}";
|
2017-01-23 16:35:59 +00:00
|
|
|
ghcCommandCaps= toUpper ghcCommand';
|
2015-03-13 03:20:56 +00:00
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
in
|
2015-07-23 20:16:16 +00:00
|
|
|
|
|
|
|
assert allPkgconfigDepends != [] -> pkgconfig != null;
|
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
stdenv.mkDerivation ({
|
2015-08-29 21:29:17 +00:00
|
|
|
name = "${pname}-${version}";
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-03-27 15:11:18 +00:00
|
|
|
pos = builtins.unsafeGetAttrPos "pname" args;
|
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
prePhases = ["setupCompilerEnvironmentPhase"];
|
2015-02-25 19:15:26 +00:00
|
|
|
preConfigurePhases = ["compileBuildDriverPhase"];
|
2015-01-16 19:54:35 +00:00
|
|
|
preInstallPhases = ["haddockPhase"];
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
inherit src;
|
|
|
|
|
2017-06-08 14:55:11 +00:00
|
|
|
inherit nativeBuildInputs;
|
|
|
|
buildInputs = otherBuildInputs ++ optionals (!hasActiveLibrary) propagatedBuildInputs;
|
|
|
|
propagatedBuildInputs = optionals hasActiveLibrary propagatedBuildInputs;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
LANG = "en_US.UTF-8"; # GHC needs the locale configured during the Haddock phase.
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-02-25 19:15:26 +00:00
|
|
|
prePatch = optionalString (editedCabalFile != null) ''
|
2015-04-01 11:52:21 +00:00
|
|
|
echo "Replace Cabal file with edited version from ${newCabalFileUrl}."
|
2015-02-25 19:15:26 +00:00
|
|
|
cp ${newCabalFile} ${pname}.cabal
|
2015-04-04 13:12:43 +00:00
|
|
|
'' + prePatch;
|
|
|
|
|
|
|
|
postPatch = optionalString jailbreak ''
|
2015-04-01 12:02:46 +00:00
|
|
|
echo "Run jailbreak-cabal to lift version restrictions on build inputs."
|
2015-02-25 19:15:26 +00:00
|
|
|
${jailbreak-cabal}/bin/jailbreak-cabal ${pname}.cabal
|
2015-04-04 13:12:43 +00:00
|
|
|
'' + postPatch;
|
2015-02-25 19:15:26 +00:00
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
setupCompilerEnvironmentPhase = ''
|
|
|
|
runHook preSetupCompilerEnvironment
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-04-01 12:02:46 +00:00
|
|
|
echo "Build with ${ghc}."
|
2017-05-28 18:19:40 +00:00
|
|
|
export PATH="${ghc}/bin:$PATH"
|
2015-01-07 19:31:32 +00:00
|
|
|
${optionalString (hasActiveLibrary && hyperlinkSource) "export PATH=${hscolour}/bin:$PATH"}
|
|
|
|
|
2015-02-23 10:45:49 +00:00
|
|
|
packageConfDir="$TMPDIR/package.conf.d"
|
2015-01-10 08:12:37 +00:00
|
|
|
mkdir -p $packageConfDir
|
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
setupCompileFlags="${concatStringsSep " " setupCompileFlags}"
|
|
|
|
configureFlags="${concatStringsSep " " defaultConfigureFlags} $configureFlags"
|
|
|
|
|
2017-06-08 14:55:11 +00:00
|
|
|
# nativePkgs defined in stdenv/setup.hs
|
|
|
|
for p in $nativePkgs; do
|
2015-01-10 08:12:37 +00:00
|
|
|
if [ -d "$p/lib/${ghc.name}/package.conf.d" ]; then
|
|
|
|
cp -f "$p/lib/${ghc.name}/package.conf.d/"*.conf $packageConfDir/
|
2015-01-07 19:31:32 +00:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if [ -d "$p/include" ]; then
|
|
|
|
configureFlags+=" --extra-include-dirs=$p/include"
|
|
|
|
fi
|
2015-02-25 18:42:02 +00:00
|
|
|
if [ -d "$p/lib" ]; then
|
2016-07-21 12:56:45 +00:00
|
|
|
configureFlags+=" --extra-lib-dirs=$p/lib"
|
2015-02-25 18:42:02 +00:00
|
|
|
fi
|
2015-01-07 19:31:32 +00:00
|
|
|
done
|
2017-05-05 16:53:08 +00:00
|
|
|
'' + (optionalString stdenv.isDarwin ''
|
|
|
|
# Work around a limit in the Mac OS X Sierra linker on the number of paths
|
|
|
|
# referenced by any one dynamic library:
|
|
|
|
#
|
|
|
|
# Create a local directory with symlinks of the *.dylib (Mac OS X shared
|
|
|
|
# libraries) from all the dependencies.
|
|
|
|
local dynamicLinksDir="$out/lib/links"
|
|
|
|
mkdir -p $dynamicLinksDir
|
|
|
|
for d in $(grep dynamic-library-dirs $packageConfDir/*|awk '{print $2}'); do
|
|
|
|
ln -s $d/*.dylib $dynamicLinksDir
|
|
|
|
done
|
|
|
|
# Edit the local package DB to reference the links directory.
|
|
|
|
for f in $packageConfDir/*.conf; do
|
|
|
|
sed -i "s,dynamic-library-dirs: .*,dynamic-library-dirs: $dynamicLinksDir," $f
|
|
|
|
done
|
|
|
|
'') + ''
|
2015-03-13 03:20:56 +00:00
|
|
|
${ghcCommand}-pkg --${packageDbFlag}="$packageConfDir" recache
|
2015-01-16 19:54:35 +00:00
|
|
|
|
|
|
|
runHook postSetupCompilerEnvironment
|
|
|
|
'';
|
|
|
|
|
|
|
|
compileBuildDriverPhase = ''
|
|
|
|
runHook preCompileBuildDriver
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
for i in Setup.hs Setup.lhs ${defaultSetupHs}; do
|
|
|
|
test -f $i && break
|
|
|
|
done
|
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
echo setupCompileFlags: $setupCompileFlags
|
2016-02-18 03:07:32 +00:00
|
|
|
${setupBuilder} $setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i
|
2015-01-16 19:54:35 +00:00
|
|
|
|
|
|
|
runHook postCompileBuildDriver
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
unset GHC_PACKAGE_PATH # Cabal complains if this variable is set during configure.
|
2015-01-16 19:54:35 +00:00
|
|
|
|
|
|
|
echo configureFlags: $configureFlags
|
2015-05-06 19:56:02 +00:00
|
|
|
${setupCommand} configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log"
|
2015-01-07 19:31:32 +00:00
|
|
|
if ${gnugrep}/bin/egrep -q '^Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
|
|
|
|
echo >&2 "*** abort because of serious configure-time warning from Cabal"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
export GHC_PACKAGE_PATH="$packageConfDir:"
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
2016-11-18 15:44:53 +00:00
|
|
|
${setupCommand} build ${buildTarget}${crossCabalFlagsString}
|
2015-01-07 19:31:32 +00:00
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
checkPhase = ''
|
2015-01-07 19:31:32 +00:00
|
|
|
runHook preCheck
|
2015-05-06 19:56:02 +00:00
|
|
|
${setupCommand} test ${testTarget}
|
2015-01-07 19:31:32 +00:00
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
haddockPhase = ''
|
|
|
|
runHook preHaddock
|
2015-01-18 10:04:38 +00:00
|
|
|
${optionalString (doHaddock && hasActiveLibrary) ''
|
2015-05-06 19:56:02 +00:00
|
|
|
${setupCommand} haddock --html \
|
2015-01-16 19:54:35 +00:00
|
|
|
${optionalString doHoogle "--hoogle"} \
|
|
|
|
${optionalString (hasActiveLibrary && hyperlinkSource) "--hyperlink-source"}
|
|
|
|
''}
|
|
|
|
runHook postHaddock
|
|
|
|
'';
|
|
|
|
|
2015-01-10 08:12:37 +00:00
|
|
|
installPhase = ''
|
2015-01-07 19:31:32 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-05-06 19:56:02 +00:00
|
|
|
${if !hasActiveLibrary then "${setupCommand} install" else ''
|
|
|
|
${setupCommand} copy
|
2015-01-10 08:12:37 +00:00
|
|
|
local packageConfDir="$out/lib/${ghc.name}/package.conf.d"
|
|
|
|
local packageConfFile="$packageConfDir/${pname}-${version}.conf"
|
|
|
|
mkdir -p "$packageConfDir"
|
2015-05-06 19:56:02 +00:00
|
|
|
${setupCommand} register --gen-pkg-config=$packageConfFile
|
2015-01-10 08:12:37 +00:00
|
|
|
local pkgId=$( ${gnused}/bin/sed -n -e 's|^id: ||p' $packageConfFile )
|
|
|
|
mv $packageConfFile $packageConfDir/$pkgId.conf
|
2015-01-07 19:31:32 +00:00
|
|
|
''}
|
2017-03-25 04:23:01 +00:00
|
|
|
${optionalString isGhcjs ''
|
|
|
|
for exeDir in "$out/bin/"*.jsexe; do
|
|
|
|
exe="''${exeDir%.jsexe}"
|
2017-07-24 04:53:13 +00:00
|
|
|
printf '%s\n' '#!${nodejs}/bin/node' > "$exe"
|
2017-03-25 04:23:01 +00:00
|
|
|
cat "$exeDir/all.js" >> "$exe"
|
|
|
|
chmod +x "$exe"
|
|
|
|
done
|
|
|
|
''}
|
2017-02-14 15:17:40 +00:00
|
|
|
${optionalString doCoverage "mkdir -p $out/share && cp -r dist/hpc $out/share"}
|
2015-05-31 07:18:13 +00:00
|
|
|
${optionalString (enableSharedExecutables && isExecutable && !isGhcjs && stdenv.isDarwin && stdenv.lib.versionOlder ghc.version "7.10") ''
|
2015-01-07 19:31:32 +00:00
|
|
|
for exe in "$out/bin/"* ; do
|
|
|
|
install_name_tool -add_rpath "$out/lib/ghc-${ghc.version}/${pname}-${version}" "$exe"
|
|
|
|
done
|
|
|
|
''}
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2015-01-10 12:23:04 +00:00
|
|
|
passthru = passthru // {
|
|
|
|
|
2017-03-01 18:56:59 +00:00
|
|
|
inherit pname version;
|
2015-01-10 12:23:04 +00:00
|
|
|
|
2015-02-22 19:42:08 +00:00
|
|
|
isHaskellLibrary = hasActiveLibrary;
|
|
|
|
|
2015-01-10 12:23:04 +00:00
|
|
|
env = stdenv.mkDerivation {
|
2015-09-10 17:07:52 +00:00
|
|
|
name = "interactive-${pname}-${version}-environment";
|
2016-03-02 00:06:29 +00:00
|
|
|
nativeBuildInputs = [ ghcEnv systemBuildInputs ]
|
|
|
|
++ optional isGhcjs ghc."socket.io"; # for ghcjsi
|
2015-01-23 07:16:53 +00:00
|
|
|
LANG = "en_US.UTF-8";
|
|
|
|
LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive";
|
2015-01-11 10:59:47 +00:00
|
|
|
shellHook = ''
|
2015-05-08 15:53:28 +00:00
|
|
|
export NIX_${ghcCommandCaps}="${ghcEnv}/bin/${ghcCommand}"
|
|
|
|
export NIX_${ghcCommandCaps}PKG="${ghcEnv}/bin/${ghcCommand}-pkg"
|
|
|
|
export NIX_${ghcCommandCaps}_DOCDIR="${ghcEnv}/share/doc/ghc/html"
|
2017-04-20 07:15:51 +00:00
|
|
|
export LD_LIBRARY_PATH="''${LD_LIBRARY_PATH:+''${LD_LIBRARY_PATH}:}${
|
|
|
|
makeLibraryPath (filter (x: !isNull x) systemBuildInputs)
|
|
|
|
}"
|
2017-04-15 08:33:07 +00:00
|
|
|
${if isHaLVM
|
|
|
|
then ''export NIX_${ghcCommandCaps}_LIBDIR="${ghcEnv}/lib/HaLVM-${ghc.version}"''
|
|
|
|
else ''export NIX_${ghcCommandCaps}_LIBDIR="${ghcEnv}/lib/${ghcCommand}-${ghc.version}"''}
|
|
|
|
${shellHook}
|
|
|
|
'';
|
2015-01-10 12:23:04 +00:00
|
|
|
};
|
|
|
|
};
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-16 19:54:35 +00:00
|
|
|
meta = { inherit homepage license platforms; }
|
2015-01-10 08:12:37 +00:00
|
|
|
// optionalAttrs broken { inherit broken; }
|
|
|
|
// optionalAttrs (description != "") { inherit description; }
|
|
|
|
// optionalAttrs (maintainers != []) { inherit maintainers; }
|
2015-01-16 19:54:35 +00:00
|
|
|
// optionalAttrs (hydraPlatforms != platforms) { inherit hydraPlatforms; }
|
2015-01-10 08:12:37 +00:00
|
|
|
;
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
}
|
2016-02-18 03:07:32 +00:00
|
|
|
// optionalAttrs (preCompileBuildDriver != "") { inherit preCompileBuildDriver; }
|
|
|
|
// optionalAttrs (postCompileBuildDriver != "") { inherit postCompileBuildDriver; }
|
2015-01-19 15:24:12 +00:00
|
|
|
// optionalAttrs (preUnpack != "") { inherit preUnpack; }
|
|
|
|
// optionalAttrs (postUnpack != "") { inherit postUnpack; }
|
2015-01-10 08:12:37 +00:00
|
|
|
// optionalAttrs (configureFlags != []) { inherit configureFlags; }
|
|
|
|
// optionalAttrs (patches != []) { inherit patches; }
|
|
|
|
// optionalAttrs (patchPhase != "") { inherit patchPhase; }
|
|
|
|
// optionalAttrs (preConfigure != "") { inherit preConfigure; }
|
|
|
|
// optionalAttrs (postConfigure != "") { inherit postConfigure; }
|
|
|
|
// optionalAttrs (preBuild != "") { inherit preBuild; }
|
|
|
|
// optionalAttrs (postBuild != "") { inherit postBuild; }
|
2015-01-20 14:48:51 +00:00
|
|
|
// optionalAttrs (doCheck) { inherit doCheck; }
|
2017-02-28 09:27:29 +00:00
|
|
|
// optionalAttrs (withBenchmarkDepends) { inherit withBenchmarkDepends; }
|
2015-01-10 08:12:37 +00:00
|
|
|
// optionalAttrs (checkPhase != "") { inherit checkPhase; }
|
|
|
|
// optionalAttrs (preCheck != "") { inherit preCheck; }
|
|
|
|
// optionalAttrs (postCheck != "") { inherit postCheck; }
|
2015-01-20 14:48:51 +00:00
|
|
|
// optionalAttrs (preInstall != "") { inherit preInstall; }
|
2015-08-14 19:22:40 +00:00
|
|
|
// optionalAttrs (installPhase != "") { inherit installPhase; }
|
2015-01-20 14:48:51 +00:00
|
|
|
// optionalAttrs (postInstall != "") { inherit postInstall; }
|
2015-01-10 08:12:37 +00:00
|
|
|
// optionalAttrs (preFixup != "") { inherit preFixup; }
|
|
|
|
// optionalAttrs (postFixup != "") { inherit postFixup; }
|
2016-01-24 22:12:03 +00:00
|
|
|
// optionalAttrs (dontStrip) { inherit dontStrip; }
|
2016-09-14 16:58:46 +00:00
|
|
|
// optionalAttrs (hardeningDisable != []) { inherit hardeningDisable; }
|
2015-02-25 18:49:39 +00:00
|
|
|
// optionalAttrs (stdenv.isLinux) { LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
|
2015-01-10 08:12:37 +00:00
|
|
|
)
|