diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-14T03·51-0800 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-15T15·49+0000 |
commit | b6d143e5d225e6aa293c23512336b7136ac58dcf (patch) | |
tree | 5cb070270342957f39415ab396a1d5f18a8a1fee /users/wpcarro/ci/pipelines/post-receive.nix | |
parent | 38ec27e834b3d177b846d35064bba58fd70f41df (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/ci/pipelines/post-receive.nix')
-rw-r--r-- | users/wpcarro/ci/pipelines/post-receive.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/wpcarro/ci/pipelines/post-receive.nix b/users/wpcarro/ci/pipelines/post-receive.nix index 456d546af7da..ee4850aa8b72 100644 --- a/users/wpcarro/ci/pipelines/post-receive.nix +++ b/users/wpcarro/ci/pipelines/post-receive.nix @@ -1,8 +1,8 @@ -{ briefcase, pkgs, ... }: +{ pkgs, depot, ... }: let inherit (builtins) fetchGit path toJSON; - inherit (briefcase.emacs) initEl runScript; + inherit (depot.users.wpcarro.emacs) initEl runScript; elispLintSrc = fetchGit { url = "https://github.com/gonewest818/elisp-lint"; |