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

13 lines
366 B
Nix
Raw Normal View History

2018-03-27 01:06:42 +00:00
{ 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
''