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