about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/documentation-highlighter/default.nix
blob: 022cc4aa834ec0fab8dafd8fe44634264a9a1283 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, stdenv, 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
''