mirror of
https://git.gay/pyrox/aux-docs
synced 2024-10-30 06:17:57 +00:00
17 lines
322 B
Nix
17 lines
322 B
Nix
|
{ stdenvNoCC, inputs }:
|
||
|
stdenvNoCC.mkDerivation {
|
||
|
pname = "aux-wiki";
|
||
|
version = "unstable";
|
||
|
|
||
|
src = inputs.aux-wiki;
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir $out
|
||
|
cp *.md $out/
|
||
|
cp -r agreements $out/agreements
|
||
|
cp -r community $out/community
|
||
|
cp -r contributing $out/contributing
|
||
|
cp -r docs $out/docs
|
||
|
'';
|
||
|
}
|