bash-interactive: better split doc stuff
... while avoiding mass rebuild ATM.
This commit is contained in:
parent
b291f1682f
commit
61ebdc192d
@ -21,7 +21,12 @@ stdenv.mkDerivation rec {
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
outputs = if (!interactive) # conditional to avoid mass rebuild ATM
|
||||
then [ "out" "doc" ]
|
||||
else [ "out" "doc" "info" ];
|
||||
|
||||
# the man pages are small and useful enough
|
||||
outputMan = if interactive then "out" else null;
|
||||
|
||||
NIX_CFLAGS_COMPILE = ''
|
||||
-DSYS_BASHRC="/etc/bashrc"
|
||||
|
Loading…
Reference in New Issue
Block a user