aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: b3241ffb7a431485e1c19db8cd9e2c1804623632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with (import (builtins.fetchGit {
  url = "git@github.com:nixos/nixpkgs.git";
  rev = "4ea4cd99058d07538935bd55e08802395c295794";
}){});

{
  env = stdenv.mkDerivation {
    name = "env";

    buildInputs = [
      elmPackages.elm
      nodejs
    ];
  };
}