bash-interactive: better split doc stuff

... while avoiding mass rebuild ATM.
wip/yesman
Vladimír Čunát 8 years ago
parent b291f1682f
commit 61ebdc192d
  1. 7
      pkgs/shells/bash/default.nix

@ -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…
Cancel
Save