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