aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 04d8dcc021d75fa9d5546d4b94675263cc1e1126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> {} }:

let 
  elmpkgs = with pkgs.elmPackages; [
    elm
    elm-language-server
    elm-format
    elm-test
  ];
  nodepkgs = with pkgs.nodePackages; [
    elm-oracle
    uglify-js
  ];
in
  pkgs.mkShell {
    buildInputs = with pkgs; [ elm2nix ] ++ elmpkgs ++ nodepkgs;
  }