2008-02-10 18:42:02 +01:00
|
|
|
args: with args;
|
2004-08-05 15:49:26 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-12-26 00:28:35 +01:00
|
|
|
name = "readline-5.2";
|
2004-08-05 15:49:26 +02:00
|
|
|
src = fetchurl {
|
2007-08-27 15:42:00 +02:00
|
|
|
url = mirror://gnu/readline/readline-5.2.tar.gz;
|
2008-02-10 18:42:02 +01:00
|
|
|
sha256 = "0icz4hqqq8mlkwrpczyaha94kns0am9z0mh3a2913kg2msb8vs0j";
|
2004-08-05 15:49:26 +02:00
|
|
|
};
|
2006-08-21 12:35:01 +02:00
|
|
|
propagatedBuildInputs = [ncurses];
|
2008-02-10 18:42:02 +01:00
|
|
|
configureFlags = "--enable-shared --disable-static";
|
2008-01-15 01:55:21 +01:00
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin ./shobj-darwin.patch;
|
2004-08-05 15:49:26 +02:00
|
|
|
}
|