2009-05-28 21:06:33 +02:00
|
|
|
{ cabal, readline, ncurses } :
|
2009-04-21 23:12:56 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self : {
|
|
|
|
pname = "readline";
|
|
|
|
version = "1.0.1.0";
|
|
|
|
sha256 = "07f2f039f32bf18838a4875d0f3caa3ed9436dd52b962b2061f0bb8a3316fa1d";
|
2009-05-28 21:06:33 +02:00
|
|
|
propagatedBuildInputs = [ readline ncurses ];
|
2009-04-23 19:48:06 +02:00
|
|
|
# experimentally link with ncursesw because ghci can't interpret ld scripts,
|
|
|
|
# and ncurses sometimes seems to be a script pointing to ncursesw
|
|
|
|
postConfigure = ''
|
|
|
|
sed -i -e "/^extra-libraries/ s/ncurses/ncursesw/" readline.buildinfo
|
|
|
|
'';
|
2009-04-21 23:12:56 +02:00
|
|
|
meta = {
|
|
|
|
description = "An interface to the GNU readline library";
|
2011-08-15 13:27:02 +02:00
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-21 23:12:56 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|