tvl-depot/tools/emacs-pkgs/notable/default.nix
Vincent Ambo b1a84f0019 feat(notable): Add note listing functionality
Adds a very simple initial display of all notes in chronologically
descending order.

Currently this is a read-only view with no available actions.

Change-Id: I6d47363909f1a9ab8d1d18a1c44966883aa758ad
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1983
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
2020-09-17 10:51:05 +00:00

11 lines
228 B
Nix

{ depot, pkgs, ... }:
pkgs.emacsPackages.trivialBuild rec {
pname = "notable";
version = "1.0";
src = ./notable.el;
packageRequires = with pkgs.emacsPackages; [
dash f ht s
depot.tools.emacs-pkgs.dottime
];
}