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