aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 15ea36956c7116c23ee6fedd560b7e5435069dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
with import (builtins.fetchTarball {
  url = https://github.com/NixOS/nixpkgs/archive/19.09.tar.gz;
  sha256 = "0mhqhq21y5vrr1f30qd2bvydv4bbbslvyzclhw0kdxmkgg3z4c92";
}) {};

mkShell {
  buildInputs = [
    closurecompiler
    nodePackages.typescript
    tmux
    tmuxinator
    zola
  ];
}