aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 4a2046aa02cbbd8d09948062b6b8a9dca621e81c (plain)
1
2
3
4
5
6
7
8
9
10
11
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "env";
    buildInputs = [
      elmPackages.elm
      cabal-install
      cabal2nix
      nodejs
    ];
  };
}