1
1
mirror of https://github.com/ryantm/agenix.git synced 2024-10-06 02:57:42 +03:00
agenix/pkgs/doc.nix

12 lines
188 B
Nix
Raw Normal View History

{
stdenvNoCC,
mmdoc,
self,
}:
stdenvNoCC.mkDerivation rec {
name = "agenix-doc";
src = ../doc;
phases = ["mmdocPhase"];
mmdocPhase = "${mmdoc}/bin/mmdoc agenix $src $out";
}