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