Commit 54b37e0f authored by Julien Moutinho's avatar Julien Moutinho
parent 5e430314
Pipeline #6171 failed with stages
......@@ -301,35 +301,59 @@
pkgs.haskell.packages.${config.compiler-nix-name}.hlint
];
shellHook = ''
export GARGANTEXT_CORENLP_SERVER="nix -L run .#coreNLP"
cp -f ${pkgs.buildPackages.writeText "cabal.project.local" ''
-- Same fix as in haskell.nix's packages.haskell-igraph.components.library,
-- but for cabal-install
package haskell-igraph
extra-include-dirs: ${pkgs.igraph.dev}/include/igraph
extra-lib-dirs: ${lib.concatMapStringsSep " " (p: "${lib.getLib p}/lib") [
pkgs.igraph
pkgs.openblas
]}
-- Enable openblas
constraints: hmatrix +openblas
package hmatrix
flags: +openblas
extra-lib-dirs: ${lib.concatMapStringsSep " " (p: "${lib.getLib p}/lib") [ pkgs.openblas ]}
''} cabal.project.local
cat >&2 ${pkgs.buildPackages.writeText "shellEnterMessage.txt" ''
**Warning**
This Nix development shell is not configured to provision
`cabal.project`'s `source-repository-package`s and their reverse dependencies,
therefore `cabal update` has to be run manually to fetch an `index-state`
before `cabal build`.
''}
'' +
self.checks.${system}.git-hooks-check.shellHook;
shellHook =
let
# Workaround https://gitlab.haskell.org/ghc/ghc/-/issues/23138#note_567034
libcxx-workaround = pkgs.symlinkJoin {
name = "libcxx-workaround";
paths = [ pkgs.libcxx ];
postBuild = ''
ln -s libc++.so $out/lib/c++
ln -s libc++.so $out/lib/clang++
'';
};
in
''
export GARGANTEXT_CORENLP_SERVER="nix -L run .#coreNLP"
cp -f ${pkgs.buildPackages.writeText "cabal.project.local" ''
package accelerate
cc-options: -B${libcxx-workaround}/lib
cxx-options: -B${libcxx-workaround}/lib
package crawlerHAL
cc-options: -B${libcxx-workaround}/lib
cxx-options: -B${libcxx-workaround}/lib
package double-conversion
cc-options: -B${libcxx-workaround}/lib
cxx-options: -B${libcxx-workaround}/lib
package llvm-hs
cc-options: -B${libcxx-workaround}/lib
cxx-options: -B${libcxx-workaround}/lib
-- Same fix as in haskell.nix's packages.haskell-igraph.components.library,
-- but for cabal-install
package haskell-igraph
extra-include-dirs: ${pkgs.igraph.dev}/include/igraph
extra-lib-dirs: ${lib.concatMapStringsSep " " (p: "${lib.getLib p}/lib") [
pkgs.igraph
pkgs.openblas
]}
-- Enable openblas
constraints: hmatrix +openblas
package hmatrix
flags: +openblas
extra-lib-dirs: ${lib.concatMapStringsSep " " (p: "${lib.getLib p}/lib") [ pkgs.openblas ]}
''} cabal.project.local
cat >&2 ${pkgs.buildPackages.writeText "shellEnterMessage.txt" ''
**Warning**
This Nix development shell is not configured to provision
`cabal.project`'s `source-repository-package`s and their reverse dependencies,
therefore `cabal update` has to be run manually to fetch an `index-state`
before `cabal build`.
''}
'' +
self.checks.${system}.git-hooks-check.shellHook;
# When true, builds a Hoogle documentation index of all dependencies,
# and provides a "hoogle" command to search the index.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment