diff options
Diffstat (limited to 'shell/purescript.nix')
| -rw-r--r-- | shell/purescript.nix | 16 |
1 files changed, 16 insertions, 0 deletions
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 <nixpkgs> {}, ... }: + +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; +} |
