diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-13T21·55+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-13T22·56+0000 |
commit | 9d95751302377ac74b0bb05e09ef4b5f7831dc15 (patch) | |
tree | 6abefaa226513ee1e61331ed01b65884bb7836ed /tools/emacs-pkgs/dottime | |
parent | cf5b88173b75052d63d81ed9a3200abc73179e86 (diff) |
feat(tools/emacs-pkgs): Add new builder for internal packages r/2503
Adds a new internal builder that makes it possible to override the `emacsPackages` passed to our Emacs packages, which in turn makes it possible to inject them into the emacsPackages fixpoint and use them with features like Emacs native compilation. Change-Id: I80dad57115c83cf5693ae6ba4e4cf3105d103d5e Reviewed-on: https://cl.tvl.fyi/c/depot/+/3003 Tested-by: BuildkiteCI Reviewed-by: adisbladis <adisbladis@gmail.com> Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tools/emacs-pkgs/dottime')
-rw-r--r-- | tools/emacs-pkgs/dottime/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/emacs-pkgs/dottime/default.nix b/tools/emacs-pkgs/dottime/default.nix index 633aad187e68..b819e9c14d2c 100644 --- a/tools/emacs-pkgs/dottime/default.nix +++ b/tools/emacs-pkgs/dottime/default.nix @@ -1,6 +1,6 @@ -{ pkgs, ... }: +{ depot, ... }: -pkgs.emacsPackages.trivialBuild rec { +depot.tools.emacs-pkgs.buildEmacsPackage { pname = "dottime"; version = "1.0"; src = ./dottime.el; |