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