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

mkShell {

  buildInputs = [
    nodePackages.typescript
    python3
    psmisc # fuser
  ];

}