c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
11 lines
223 B
Nix
11 lines
223 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
pkgs.emacsPackages.trivialBuild rec {
|
|
pname = "notable";
|
|
version = "1.0";
|
|
src = ./notable.el;
|
|
packageRequires = with pkgs.emacsPackages; [
|
|
f ht s
|
|
depot.tools.emacs-pkgs.dottime
|
|
];
|
|
}
|