diff options
Diffstat (limited to 'users/wpcarro/scratch')
-rw-r--r-- | users/wpcarro/scratch/deepmind/part_two/shell.nix | 7 | ||||
-rw-r--r-- | users/wpcarro/scratch/groceries/shell.nix | 6 | ||||
-rw-r--r-- | users/wpcarro/scratch/haskell-programming-from-first-principles/shell.nix | 6 |
3 files changed, 9 insertions, 10 deletions
diff --git a/users/wpcarro/scratch/deepmind/part_two/shell.nix b/users/wpcarro/scratch/deepmind/part_two/shell.nix index 6080171bb835..f1b02c4d2ed5 100644 --- a/users/wpcarro/scratch/deepmind/part_two/shell.nix +++ b/users/wpcarro/scratch/deepmind/part_two/shell.nix @@ -1,7 +1,6 @@ -let - briefcase = import <briefcase> {}; - pkgs = briefcase.third_party.pkgs; -in pkgs.mkShell { +{ pkgs, ... }: + +pkgs.mkShell { buildInputs = with pkgs; [ nodejs python3 diff --git a/users/wpcarro/scratch/groceries/shell.nix b/users/wpcarro/scratch/groceries/shell.nix index 4d5b412a0884..7682e8246cac 100644 --- a/users/wpcarro/scratch/groceries/shell.nix +++ b/users/wpcarro/scratch/groceries/shell.nix @@ -1,5 +1,5 @@ -let - briefcase = import <briefcase> {}; -in briefcase.buildHaskell.shell { +{ depot, ... }: + +depot.users.wpcarro.buildHaskell.shell { deps = hpkgs: []; } diff --git a/users/wpcarro/scratch/haskell-programming-from-first-principles/shell.nix b/users/wpcarro/scratch/haskell-programming-from-first-principles/shell.nix index b594a4207e48..49dbe746d364 100644 --- a/users/wpcarro/scratch/haskell-programming-from-first-principles/shell.nix +++ b/users/wpcarro/scratch/haskell-programming-from-first-principles/shell.nix @@ -1,6 +1,6 @@ -let - briefcase = import <briefcase> {}; -in briefcase.buildHaskell.shell { +{ depot, ... }: + +depot.users.wpcarro.buildHaskell.shell { deps = hpkgs: with hpkgs; [ quickcheck-simple checkers |