bash-interactive: better split doc stuff

... while avoiding mass rebuild ATM.
This commit is contained in:
Vladimír Čunát 2016-02-21 17:47:44 +01:00
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"