mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
markdown-toc: init at 0.0.8
This commit is contained in:
parent
812f7be7dc
commit
17730286fe
1 changed files with 21 additions and 0 deletions
|
@ -982,6 +982,27 @@ let self = _self // overrides;
|
||||||
meta = { license = gpl3Plus; };
|
meta = { license = gpl3Plus; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
markdown-toc = melpaBuild rec {
|
||||||
|
pname = "markdown-toc";
|
||||||
|
version = "0.0.8";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ardumont";
|
||||||
|
repo = pname;
|
||||||
|
rev = "06903e24457460a8964a978ace709c69afc36692";
|
||||||
|
sha256 = "07w0w9g81c6c404l3j7gb420wc2kjmah728w84mdymscdl5w3qyl";
|
||||||
|
};
|
||||||
|
packageRequires = [ markdown-mode dash s ];
|
||||||
|
files = [ "${pname}.el" ];
|
||||||
|
meta = {
|
||||||
|
description = "Generate a TOC in markdown file";
|
||||||
|
longDescription = ''
|
||||||
|
A simple mode to create TOC in a markdown file.
|
||||||
|
'';
|
||||||
|
homepage = https://github.com/ardumont/mardown-toc;
|
||||||
|
license = gpl3Plus;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
moe-theme = melpaBuild rec {
|
moe-theme = melpaBuild rec {
|
||||||
pname = "moe-theme";
|
pname = "moe-theme";
|
||||||
version = "1.0";
|
version = "1.0";
|
||||||
|
|
Loading…
Reference in a new issue