feat(tools/emacs-pkgs): Add new builder for internal packages

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>
This commit is contained in:
Vincent Ambo 2021-04-13 23:55:31 +02:00 committed by tazjin
parent cf5b88173b
commit 9d95751302
7 changed files with 53 additions and 23 deletions

View file

@ -1,14 +1,8 @@
{ pkgs, ... }:
{ depot, ... }:
with pkgs.emacsPackages;
melpaBuild rec {
depot.tools.emacs-pkgs.buildEmacsPackage {
pname = "term-switcher";
version = "1.0";
src = ./term-switcher.el;
packageRequires = [ dash ivy s vterm ];
recipe = builtins.toFile "recipe" ''
(term-switcher :fetcher github :repo "tazjin/depot")
'';
externalRequires = epkgs: with epkgs; [ dash ivy s vterm ];
}