aboutsummaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorAdrian Kummerlaender2021-08-18 19:02:56 +0200
committerAdrian Kummerlaender2021-08-18 19:02:56 +0200
commitd7376225387e88547ac56409aefb7443af32b7fd (patch)
treecd76aab1c08d31dc4ad18764a77958dc6c6f952b /tasks
parent8ec6ada4b1fb7c10b5abda1216daa4502b01ada3 (diff)
downloadnixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar.gz
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar.bz2
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar.lz
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar.xz
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.tar.zst
nixos_home-d7376225387e88547ac56409aefb7443af32b7fd.zip
Move jupyterWith to flake inputs
Diffstat (limited to 'tasks')
-rw-r--r--tasks/default.nix7
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 ];
};