diff options
author | William Carroll <wpcarro@gmail.com> | 2022-11-25T18·36-0800 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-11-28T19·07+0000 |
commit | 89e37ee87755339d113fb631ddae3682e5cddffc (patch) | |
tree | f3af323c27848516b33d9fc48b6db3bdbffd33c1 /users/wpcarro/emacs/pkgs/theme/default.nix | |
parent | 22c2c5ba46bde2ac3f62811eb5caaffede7ceed8 (diff) |
feat(wpcarro/emacs): Package theme.el r/5347
**TL;DR:** - Rename `colorscheme.el` to `theme.el` to align with Emacs's nomenclature. - Prune dependencies: - `cl-lib` - `>` - `prelude` Change-Id: I15f225671b4096ab08913583b7b464e316c95298 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7412 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/emacs/pkgs/theme/default.nix')
-rw-r--r-- | users/wpcarro/emacs/pkgs/theme/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/pkgs/theme/default.nix b/users/wpcarro/emacs/pkgs/theme/default.nix new file mode 100644 index 000000000000..aea639436961 --- /dev/null +++ b/users/wpcarro/emacs/pkgs/theme/default.nix @@ -0,0 +1,14 @@ +{ pkgs, depot, ... }: + +pkgs.callPackage + ({ emacsPackages }: + emacsPackages.trivialBuild { + pname = "theme"; + version = "1.0.0"; + src = ./theme.el; + packageRequires = + (with depot.users.wpcarro.emacs.pkgs; [ + cycle + ]); + }) +{ } |