aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 3bffe92c5fd7e0cb756b03f7a07a166b40ed865b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
    python3Packages.beautifulsoup4
    psmisc # fuser
  ];

}