b1a84f0019
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
11 lines
228 B
Nix
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
|
|
];
|
|
}
|