diff options
author | Joris | 2019-03-10 19:15:45 +0100 |
---|---|---|
committer | Joris | 2019-03-10 19:15:45 +0100 |
commit | 8e03a571033a5d02d2287a2b1d1edd8b57aa2462 (patch) | |
tree | 03d6965bb65322dbac03edf2d6a30ee856c197f6 /default.nix | |
parent | c41f16ed474376ad8a61a75d8b7f9ef543f359b4 (diff) |
Scrap result page and make a CSV of it
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..2f1a1f8 --- /dev/null +++ b/default.nix @@ -0,0 +1,13 @@ +with import <nixpkgs> {}; { + env = stdenv.mkDerivation { + name = "env"; + buildInputs = [ + cabal-install + tmux + tmuxinator + nodePackages.nodemon + # haskellPackages.ghcid + zlib + ]; + }; +} |