documentation-highlighter: init

This commit is contained in:
Graham Christensen
2018-03-26 21:23:41 -04:00
parent 63406fa1cf
commit a8d08b04a2
7 changed files with 293 additions and 0 deletions
@@ -0,0 +1,12 @@
{ stdenv, runCommand }:
runCommand "documentation-highlighter" {
meta = {
description = "Highlight.js sources for the Nix Ecosystem's documentation.";
homepage = https://highlightjs.org;
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.grahamc ];
};
} ''
cp -r ${./.} $out
''