about summary refs log tree commit diff
path: root/tools/emacs-pkgs/notable/default.nix
blob: 8c6935fe886be503244b7eb8716c329b44f21a90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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
  ];
}