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