From f8b7b030d293c17232753103564eba7e2f417a24 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 11 Apr 2021 14:03:58 +0530 Subject: Adds collection of shell files and new-shell command --- shell/purescript.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 shell/purescript.nix (limited to 'shell/purescript.nix') diff --git a/shell/purescript.nix b/shell/purescript.nix new file mode 100644 index 0000000..511ed46 --- /dev/null +++ b/shell/purescript.nix @@ -0,0 +1,16 @@ +{ pkgs ? import {}, ... }: + +let + packages = with pkgs; [ + purescript + spago + nodePackages.purescript-language-server + dhall-lsp-server + nodejs-15_x + yarn + ]; +in +pkgs.stdenv.mkDerivation { + name = "purescript-proj"; + buildInputs = packages; +} -- cgit v1.3.1