nixpkgs/pkgs/misc/documentation-highlighter/default.nix

13 lines
343 B
Nix
Raw Normal View History

{ lib, runCommand }:
2018-03-27 01:06:42 +00:00
runCommand "documentation-highlighter" {
meta = {
description = "Highlight.js sources for the Nix Ecosystem's documentation";
homepage = "https://highlightjs.org";
2021-01-15 13:21:58 +00:00
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.grahamc ];
2018-03-27 01:06:42 +00:00
};
} ''
cp -r ${./.} $out
''