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 /third_party/emacs/rcirc | |
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 'third_party/emacs/rcirc')
-rw-r--r-- | third_party/emacs/rcirc/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/emacs/rcirc/default.nix b/third_party/emacs/rcirc/default.nix index 9d22c7cd8663..f34cbed7896a 100644 --- a/third_party/emacs/rcirc/default.nix +++ b/third_party/emacs/rcirc/default.nix @@ -1,6 +1,6 @@ -{ pkgs, ... }: +{ depot, ... }: -pkgs.emacsPackages.trivialBuild rec { +depot.tools.emacs-pkgs.buildEmacsPackage rec { pname = "rcirc"; version = "1"; src = ./rcirc.el; |