nixpkgs/pkgs/misc/documentation-highlighter/default.nix
2021-03-04 19:54:50 +07:00

13 lines
343 B
Nix

{ 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
''