mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 08:39:54 +03:00
657789137c
* use mmdoc * add github pages action to auto publish * do not edit README for now, will follow up with a commit directs people to the doc site
11 lines
188 B
Nix
11 lines
188 B
Nix
{
|
|
stdenvNoCC,
|
|
mmdoc,
|
|
self,
|
|
}:
|
|
stdenvNoCC.mkDerivation rec {
|
|
name = "agenix-doc";
|
|
src = ../doc;
|
|
phases = ["mmdocPhase"];
|
|
mmdocPhase = "${mmdoc}/bin/mmdoc agenix $src $out";
|
|
}
|