about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-12-01T12·16+0100
committertazjin <mail@tazj.in>2020-12-01T12·55+0000
commit87f1e15baa5491dcfd1b66102909d1ba1b75c175 (patch)
tree4a89e3736c25811236c4acf1221d5d86b64d348e
parent6c08bcc84d51fd5a1a5152b3c611df44c93a3f00 (diff)
chore(writeElispBin): Move from //overrides to //nix r/1971
... some legacy cleanup ...

Change-Id: I9e73451256f842e75ddbf1382badaf06c775c755
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2212
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r--nix/writeElispBin/default.nix (renamed from overrides/writeElispBin/default.nix)2
-rw-r--r--users/tazjin/aoc2019/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/overrides/writeElispBin/default.nix b/nix/writeElispBin/default.nix
index 1b3ba05443..c116607e0a 100644
--- a/overrides/writeElispBin/default.nix
+++ b/nix/writeElispBin/default.nix
@@ -1,6 +1,6 @@
 { depot, pkgs, ... }:
 
-{ name, src, deps ? (_: []), emacs ? pkgs.emacs26-nox }:
+{ name, src, deps ? (_: []), emacs ? pkgs.emacs27-nox }:
 
 let
   inherit (pkgs) emacsPackages emacsPackagesGen;
diff --git a/users/tazjin/aoc2019/default.nix b/users/tazjin/aoc2019/default.nix
index 5f1f248c50..ce3146d1f7 100644
--- a/users/tazjin/aoc2019/default.nix
+++ b/users/tazjin/aoc2019/default.nix
@@ -13,7 +13,7 @@ let
   solutionFiles = filter (e: dir."${e}" == "regular" && isSolution e) (attrNames dir);
   solutions = map (f: let day = getDay f; in {
     name = day;
-    value = depot.writeElispBin { # TODO(tazjin): move writeElispBin to depot.nix
+    value = depot.nix.writeElispBin {
       name = "aoc2019";
       deps = p: with p; [ dash s ht ];
       src = ./. + ("/" + f);