aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorJoris2022-09-04 16:21:18 +0200
committerJoris2022-09-04 16:21:18 +0200
commit0b32b9110dd406ca052cfd7348f0ddd7e35b048e (patch)
tree11e0da7d61be8d7602c53b95d1738a87b2179dd2 /shell.nix
parenta5f8943c7eecd2048007b53610d7bc1edaa5ac05 (diff)
Use esbuild to produce JS
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 3bffe92..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-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
- ];
-
-}