From d48cafebb277e4ad4b31e883cbe4f55eef9ea4a4 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 29 May 2021 19:24:41 +0200 Subject: Rewrite in TypeScript --- shell.nix | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index e7e0323..3bffe92 100644 --- a/shell.nix +++ b/shell.nix @@ -1,16 +1,17 @@ -with import {}; { - env = stdenv.mkDerivation { - name = "env"; - buildInputs = with pkgs; [ - yarn - nodePackages.bower - purescript - tmux - tmuxinator - webfs - ]; - shellHook = '' - export PATH=node_modules/.bin:$PATH; - ''; - }; +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 + ]; + } -- cgit v1.2.3