1 { pkgs ? import ./pinned-21.05.nix {} }:
5 ghc = pkgs.haskell.compiler.ghc8104;
10 nonhsBuildInputs = with pkgs; [
27 libPaths = pkgs.lib.makeLibraryPath nonhsBuildInputs;
29 export LD_LIBRARY_PATH="${libPaths}"
30 export LIBRARY_PATH="${libPaths}"
32 shell = pkgs.mkShell {
33 name = "gargantext-shell";
34 buildInputs = hsBuildInputs ++ nonhsBuildInputs;