mirror of
https://git.gay/pyrox/aux-docs
synced 2024-10-30 05:07:56 +00:00
14 lines
205 B
Nix
14 lines
205 B
Nix
{ stdenv, inputs }:
|
|
stdenv.mkDerivation {
|
|
pname = "nixpkgs-doc-src";
|
|
version = "unstable";
|
|
|
|
src = inputs.nixpkgs.outPath;
|
|
|
|
phases = "installPhase";
|
|
|
|
installPhase = ''
|
|
cp -r doc/ $out
|
|
'';
|
|
}
|