forked from auxolotl/docs
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
|
|
'';
|
|
}
|