]> Git — Sourcephile - gargantext.git/blob - shell.nix
[FIX] Print phylo
[gargantext.git] / shell.nix
1 { pkgs ? import ./nix/pkgs.nix {} }:
2 let
3 myBuildInputs = [
4 pkgs.pkgs.docker-compose
5 pkgs.pkgs.haskell-language-server
6 pkgs.pkgs.stack
7 ];
8 in
9 pkgs.pkgs.mkShell {
10 name = pkgs.shell.name;
11 shellHook = pkgs.shell.shellHook;
12 buildInputs = pkgs.shell.buildInputs ++ myBuildInputs;
13 }