about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-04-04 10:31:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-04-04 10:31:09 +0000
commitb6195120a4d4c9c8b294fbeafae09aa15b54899a (patch)
tree668a9ccfce270997cf2a1b968ec79f6b8fa413cc /pkgs/shells
parent4bb17a673ca526ee85b443b095e393b8fe5a0418 (diff)
* Add bashInteractive to the channel.
svn path=/nixpkgs/trunk/; revision=8539
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/bash-interactive/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/shells/bash-interactive/default.nix b/pkgs/shells/bash-interactive/default.nix
index 678e6b40aed0f..6e9d7b3fa4312 100644
--- a/pkgs/shells/bash-interactive/default.nix
+++ b/pkgs/shells/bash-interactive/default.nix
@@ -24,6 +24,8 @@ stdenv.mkDerivation {
   buildInputs = [bison] ++ (if interactive then [ncurses] else []);
 
   meta = {
-    description = "GNU Bourne-Again Shell, the de facto standard shell on Linux";
+    description =
+      "GNU Bourne-Again Shell, the de facto standard shell on Linux" +
+        (if interactive then " (for interactive use)" else "");
   };
 }