about summary refs log tree commit diff
path: root/tools/emacs-pkgs/notable/default.nix
blob: 74cdddf6ab4f95d4bfabcf5431ffd4c646649f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:

pkgs.emacsPackages.trivialBuild rec {
  pname = "notable";
  version = "1.0";
  src = ./notable.el;
  packageRequires = with pkgs.emacsPackages; [
    dash f ht s
  ];
}