2018-03-27 02:06:42 +01:00
|
|
|
{ stdenv, runCommand }:
|
|
|
|
runCommand "documentation-highlighter" {
|
|
|
|
meta = {
|
|
|
|
description = "Highlight.js sources for the Nix Ecosystem's documentation.";
|
2020-04-02 21:01:48 +01:00
|
|
|
homepage = "https://highlightjs.org";
|
2018-03-27 02:06:42 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.grahamc ];
|
|
|
|
};
|
|
|
|
} ''
|
|
|
|
cp -r ${./.} $out
|
|
|
|
''
|