2021-03-04 04:54:50 -08:00
|
|
|
{ lib, runCommand }:
|
2018-03-26 18:06:42 -07:00
|
|
|
runCommand "documentation-highlighter" {
|
|
|
|
meta = {
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "Highlight.js sources for the Nix Ecosystem's documentation";
|
2020-04-02 13:01:48 -07:00
|
|
|
homepage = "https://highlightjs.org";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.grahamc ];
|
2018-03-26 18:06:42 -07:00
|
|
|
};
|
|
|
|
} ''
|
|
|
|
cp -r ${./.} $out
|
|
|
|
''
|