forked from auxolotl/docs
add nonfunctional lix-docs package
This commit is contained in:
parent
a9bba35ea2
commit
cf578753d0
26
overlays/lix-docs/default.nix
Normal file
26
overlays/lix-docs/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ channels, ... }:
|
||||||
|
final: prev: {
|
||||||
|
lix-docs = channels.nixpkgs.lix.overrideAttrs (old: {
|
||||||
|
buildPhase = ''
|
||||||
|
TERM=dumb ninja doc/manual/markdown
|
||||||
|
'';
|
||||||
|
checkPhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
installPhase = ''
|
||||||
|
ls -l doc
|
||||||
|
mkdir $out $debug $man $doc $dev
|
||||||
|
mv doc/manual/* $out/
|
||||||
|
mv doc/manual/* $debug/
|
||||||
|
mv doc/manual/* $man/
|
||||||
|
mv doc/manual/* $doc/
|
||||||
|
mv doc/manual/* $dev/
|
||||||
|
'';
|
||||||
|
fixupPhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
installCheckPhase = ''
|
||||||
|
true
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
}
|
1
packages/lix-docs/default.nix
Normal file
1
packages/lix-docs/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ pkgs, ... }: pkgs.lix-docs
|
Loading…
Reference in a new issue