summary refs log tree commit diff
path: root/pkgs/misc/documentation-highlighter/default.nix
blob: 16b47d01f24f4cd19268bd380f0aa0212690c17d (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
''