summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-02 14:54:58 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-02 14:54:58 +0000
commit33ddaafc57e4568a5d4a8883f255c8dd26a43117 (patch)
tree6672d1c6ab38c30d70611848ea37fbf92b8e5c91 /pkgs/system/all-packages-generic.nix
parent7583231221cf290493bd8a7c6d2032af5c191528 (diff)
downloadnixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar.gz
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar.bz2
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar.lz
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar.xz
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.tar.zst
nixpkgs-33ddaafc57e4568a5d4a8883f255c8dd26a43117.zip
* Add readline 4 (in addition to readline 5).
svn path=/nixpkgs/trunk/; revision=3990
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index d4febe859ff..65c5e538bb2 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -1147,10 +1147,16 @@ rec {
     inherit (gtkLibs) glib gtk;
   };
   
-  readline = (import ../development/libraries/readline) {
+  readline4 = (import ../development/libraries/readline/readline4.nix) {
     inherit fetchurl stdenv ncurses;
   };
 
+  readline5 = (import ../development/libraries/readline/readline5.nix) {
+    inherit fetchurl stdenv ncurses;
+  };
+
+  readline = readline5;
+
   SDL = (import ../development/libraries/SDL) {
     inherit fetchurl stdenv x11;
   };