about summary refs log tree commit diff
path: root/tools/emacs-pkgs/notable/default.nix
blob: f57b1c66ae3fbc2720753fc99df8aca656fe681b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ depot, ... }:

depot.tools.emacs-pkgs.buildEmacsPackage rec {
  pname = "notable";
  version = "1.0";
  src = ./notable.el;

  externalRequires = epkgs: with epkgs; [
    f
    ht
    s
  ];

  internalRequires = [
    depot.tools.emacs-pkgs.dottime
  ];
}