diff options
Diffstat (limited to 'documentation-highlighter/default.nix')
-rw-r--r-- | documentation-highlighter/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/documentation-highlighter/default.nix b/documentation-highlighter/default.nix new file mode 100644 index 0000000..2a34e36 --- /dev/null +++ b/documentation-highlighter/default.nix | |||
@@ -0,0 +1,12 @@ | |||
1 | { lib, runCommand }: | ||
2 | runCommand "documentation-highlighter" { | ||
3 | meta = { | ||
4 | description = "Highlight.js sources for the Nix Ecosystem's documentation"; | ||
5 | homepage = "https://highlightjs.org"; | ||
6 | license = lib.licenses.bsd3; | ||
7 | platforms = lib.platforms.all; | ||
8 | maintainers = [ lib.maintainers.grahamc ]; | ||
9 | }; | ||
10 | } '' | ||
11 | cp -r ${./.} $out | ||
12 | '' | ||