blob: fc57d665d737d7c472ede1032f4ebce24eca42f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ pkgs, ... }:
let
inherit (pkgs) emacsPackages fetchFromGitHub;
commit = "35f7d780a9c164b5c502023746473b1de3857904";
in emacsPackages.melpaBuild rec {
pname = "explain-pause-mode";
version = "0.1"; # master on 20200603
inherit commit;
recipe = builtins.toFile "recipe.el" ''
(explain-pause-mode :fetcher github
:repo "lastquestion/explain-pause-mode")
'';
src = fetchFromGitHub {
owner = "lastquestion";
repo = "explain-pause-mode";
rev = commit;
sha256 = "0d9lwzqqwmz0n94i7959rj7m24265yf3825a5g8cd7fyzxznl1pc";
};
}
|