diff options
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/default.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tasks/default.nix b/tasks/default.nix index d1c7bc9..075af56 100644 --- a/tasks/default.nix +++ b/tasks/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, jupyter, ... }: let mkShellDerivation = n: ps: pkgs.stdenvNoCC.mkDerivation rec { @@ -27,11 +27,6 @@ let ''; }; - jupyter = import (builtins.fetchGit { - url = https://github.com/tweag/jupyterWith; - rev = "35eb565c6d00f3c61ef5e74e7e41870cfa3926f7"; - }) {}; - mkJupyterEnv = kernel: jupyter.jupyterlabWith { kernels = [ kernel ]; }; |