aboutsummaryrefslogtreecommitdiff
path: root/shell/purescript.nix
blob: 511ed466ec4bb73515e6ccd5e360849d12d0f582 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}