Merge pull request #9831 from ardumont/init-markdown-toc

emacs24PackagesNg.markdown-toc: init at 0.0.8

+21
+21
pkgs/top-level/emacs-packages.nix
··· 982 982 meta = { license = gpl3Plus; }; 983 983 }; 984 984 985 + markdown-toc = melpaBuild rec { 986 + pname = "markdown-toc"; 987 + version = "0.0.8"; 988 + src = fetchFromGitHub { 989 + owner = "ardumont"; 990 + repo = pname; 991 + rev = "06903e24457460a8964a978ace709c69afc36692"; 992 + sha256 = "07w0w9g81c6c404l3j7gb420wc2kjmah728w84mdymscdl5w3qyl"; 993 + }; 994 + packageRequires = [ markdown-mode dash s ]; 995 + files = [ "${pname}.el" ]; 996 + meta = { 997 + description = "Generate a TOC in markdown file"; 998 + longDescription = '' 999 + A simple mode to create TOC in a markdown file. 1000 + ''; 1001 + homepage = https://github.com/ardumont/mardown-toc; 1002 + license = gpl3Plus; 1003 + }; 1004 + }; 1005 + 985 1006 moe-theme = melpaBuild rec { 986 1007 pname = "moe-theme"; 987 1008 version = "1.0";