summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-02-01 00:00:00 +0000
committerJan Malakhovski <oxij@oxij.org>2018-02-26 22:46:35 +0000
commitd45e39c9a9961544933bfd5b3b59ea47b1c7efb3 (patch)
treec2f44ceec8e1f1142dc26963e8456e1d551ee8eb /pkgs/shells/bash
parent49afe1d490894e27830d38a600bd503dd7f306f1 (diff)
downloadnixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar.gz
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar.bz2
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar.lz
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar.xz
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.tar.zst
nixpkgs-d45e39c9a9961544933bfd5b3b59ea47b1c7efb3.zip
bash, bashInteractive: install manpages for both variants
This mostly reverts commit bd0e161f0cd6a34a5fa777570b1489f1275af417.
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/4.4.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/shells/bash/4.4.nix b/pkgs/shells/bash/4.4.nix
index 63c7fbc7a0e..04a03698289 100644
--- a/pkgs/shells/bash/4.4.nix
+++ b/pkgs/shells/bash/4.4.nix
@@ -36,9 +36,7 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
-  outputs = [ "out" "dev" "doc" "info" ]
-    # the man pages are small and useful enough, so include them in $out in interactive builds
-    ++ stdenv.lib.optional (!interactive) "man";
+  outputs = [ "out" "dev" "man" "doc" "info" ];
 
   NIX_CFLAGS_COMPILE = ''
     -DSYS_BASHRC="/etc/bashrc"