nixpkgs/pkgs/development/haskell-modules/generic-stack-builder.nix
Mathieu Boespflug 70bc97b731 haskell.lib.buildStackProject: fix treatment of LD_LIBRARY_PATH.
Don't make LD_LIBRARY_PATH pick up cwd when original string is empty,
due to colon terminated search path.
2016-06-13 00:55:34 +02:00

42 lines
943 B
Nix

{ stdenv, ghc, pkgconfig, glibcLocales }:
with stdenv.lib;
{ buildInputs ? []
, extraArgs ? []
, LD_LIBRARY_PATH ? []
, ghc ? ghc
, ...
}@args:
stdenv.mkDerivation (args // {
buildInputs =
buildInputs ++
optional stdenv.isLinux glibcLocales ++
[ ghc pkgconfig ];
STACK_IN_NIX_SHELL=1;
STACK_IN_NIX_EXTRA_ARGS =
concatMap (pkg: ["--extra-lib-dirs=${pkg}/lib"
"--extra-include-dirs=${pkg}/include"]) buildInputs ++
extraArgs;
# XXX: workaround for https://ghc.haskell.org/trac/ghc/ticket/11042.
LD_LIBRARY_PATH = makeLibraryPath (LD_LIBRARY_PATH ++ buildInputs);
preferLocalBuild = true;
configurePhase = args.configurePhase or "stack setup";
buildPhase = args.buildPhase or "stack build";
checkPhase = args.checkPhase or "stack test";
doCheck = args.doCheck or true;
installPhase = args.installPhase or ''
stack --local-bin-path=$out/bin build --copy-bins
'';
})