about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-26 20:13:23 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-26 20:13:23 +0000
commit6b4de5c25e204b05cbea04e515fde1cccd45af09 (patch)
tree4f808f9b9015221c8e1e07b45cfe97cbe24bf60a /pkgs/shells
parent6dc132be1e0d47dae64a73a7e42f7dbcc84bb3ad (diff)
downloadnixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar.gz
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar.bz2
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar.lz
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar.xz
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.tar.zst
nixlib-6b4de5c25e204b05cbea04e515fde1cccd45af09.zip
* None of us is paying attention today ;-)
svn path=/nixpkgs/branches/stdenv-updates/; revision=19690
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/bash/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix
index c003c4347a02..0f4b610f4123 100644
--- a/pkgs/shells/bash/default.nix
+++ b/pkgs/shells/bash/default.nix
@@ -3,8 +3,9 @@
 assert interactive -> readline != null;
 
 let realName = "bash-4.1"; in
+
 stdenv.mkDerivation rec {
-  name = "${realName}-p${builtins.length patches}";
+  name = "${realName}-p${toString (builtins.length patches)}";
 
   src = fetchurl {
     url = "mirror://gnu/bash/${realName}.tar.gz";