diff options
Diffstat (limited to 'website/sandbox/learnpianochords/src/server/shell.nix')
-rw-r--r-- | website/sandbox/learnpianochords/src/server/shell.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/website/sandbox/learnpianochords/src/server/shell.nix b/website/sandbox/learnpianochords/src/server/shell.nix new file mode 100644 index 000000000000..6cb5e19e99fa --- /dev/null +++ b/website/sandbox/learnpianochords/src/server/shell.nix @@ -0,0 +1,19 @@ +let + pkgs = import /home/wpcarro/nixpkgs {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + (haskellPackages.ghcWithPackages (hpkgs: [ + hpkgs.hspec + hpkgs.servant-server + hpkgs.aeson + hpkgs.wai-cors + hpkgs.warp + hpkgs.jwt + hpkgs.unordered-containers + hpkgs.base64 + hpkgs.http-conduit + hpkgs.rio + hpkgs.envy + ])) + ]; +} |