about summary refs log tree commit diff
path: root/users/wpcarro/zoo
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-12-14T03·51-0800
committerclbot <clbot@tvl.fyi>2021-12-15T15·49+0000
commitb6d143e5d225e6aa293c23512336b7136ac58dcf (patch)
tree5cb070270342957f39415ab396a1d5f18a8a1fee /users/wpcarro/zoo
parent38ec27e834b3d177b846d35064bba58fd70f41df (diff)
fix(wpcarro/nix): Remove <briefcase> references r/3249
Angle-bracketed references are a Nix anti-pattern, and thankfully this
repository enforces this as a standard.

TL;DR:
- Drop angle-bracketed references
- Change `briefcase` -> `users.wpcarro`
- Fix any resulting regressions
- Fix //users/wpcarro/tools/simple_vim
- Mark //users/wpcarro/boilerplate/typescript and related projects
  as broken
- drop .skip-subtree file, enabling depot CI

Change-Id: I7153cbabafa617bfd6b199370cbec65cb75441f6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4325
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Reviewed-by: tazjin <mail@tazj.in>
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/zoo')
-rw-r--r--users/wpcarro/zoo/default.nix4
-rw-r--r--users/wpcarro/zoo/shell.nix6
2 files changed, 5 insertions, 5 deletions
diff --git a/users/wpcarro/zoo/default.nix b/users/wpcarro/zoo/default.nix
index 35de24d9c2..312a6cbd76 100644
--- a/users/wpcarro/zoo/default.nix
+++ b/users/wpcarro/zoo/default.nix
@@ -1,6 +1,6 @@
-{ briefcase, ... }:
+{ depot, ... }:
 
-briefcase.buildHaskell.program {
+depot.users.wpcarro.buildHaskell.program {
   name = "zoo";
   srcs = builtins.path {
     path = ./.;
diff --git a/users/wpcarro/zoo/shell.nix b/users/wpcarro/zoo/shell.nix
index 944c5acc7f..5978d5b4d0 100644
--- a/users/wpcarro/zoo/shell.nix
+++ b/users/wpcarro/zoo/shell.nix
@@ -1,6 +1,6 @@
-let
-  briefcase = import <briefcase> {};
-in briefcase.buildHaskell.shell {
+{ depot, ... }:
+
+depot.users.wpcarro.buildHaskell.shell {
   deps = hpkgs: with hpkgs; [
     servant-server
     aeson