2021-04-13 23:55:31 +02:00
|
|
|
{ depot, ... }:
|
2020-09-15 15:04:33 +02:00
|
|
|
|
2021-04-13 23:55:31 +02:00
|
|
|
depot.tools.emacs-pkgs.buildEmacsPackage rec {
|
2020-09-15 15:04:33 +02:00
|
|
|
pname = "notable";
|
|
|
|
version = "1.0";
|
|
|
|
src = ./notable.el;
|
2021-04-13 23:55:31 +02:00
|
|
|
|
|
|
|
externalRequires = epkgs: with epkgs; [
|
2022-01-30 17:06:58 +01:00
|
|
|
f
|
|
|
|
ht
|
|
|
|
s
|
2021-04-13 23:55:31 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
internalRequires = [
|
2020-09-15 21:05:52 +02:00
|
|
|
depot.tools.emacs-pkgs.dottime
|
2020-09-15 15:04:33 +02:00
|
|
|
];
|
|
|
|
}
|