summary refs log tree commit diff
path: root/pkgs/misc/documentation-highlighter/default.nix
blob: a9fbcc178bb8bd66f43ed463e57e58f9fff367cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ stdenv, runCommand }:
runCommand "documentation-highlighter" {
  meta = {
    description = "Highlight.js sources for the Nix Ecosystem's documentation.";
    homepage = https://highlightjs.org;
    license = stdenv.lib.licenses.bsd3;
    platforms = stdenv.lib.platforms.all;
    maintainers = [ stdenv.lib.maintainers.grahamc ];
  };
} ''
  cp -r ${./.} $out
''