diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-15T22·13+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-15T22·54+0000 |
commit | 2bf25672846a1d73dc14f5fe1f44f612eea61250 (patch) | |
tree | e68c886b442e479010e3be3d809618be5490ff06 /tools/emacs-pkgs/dottime/default.nix | |
parent | 02e28771939db5c74e3d416763938b7adae45e07 (diff) |
feat(emacs-pkgs): Check in separate dottime package
This package adds a toggle for displaying modeline time in dottime, as well as a function for formatting time as dottime generically.
Diffstat (limited to 'tools/emacs-pkgs/dottime/default.nix')
-rw-r--r-- | tools/emacs-pkgs/dottime/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/emacs-pkgs/dottime/default.nix b/tools/emacs-pkgs/dottime/default.nix new file mode 100644 index 000000000000..b09756dea560 --- /dev/null +++ b/tools/emacs-pkgs/dottime/default.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +pkgs.third_party.emacsPackagesNg.trivialBuild rec { + pname = "dottime"; + version = "1.0"; + src = ./dottime.el; +} |