2013-02-18 02:11:16 -08:00
|
|
|
{ cabal, readline, ncurses }:
|
2009-04-21 14:12:56 -07:00
|
|
|
|
2013-02-18 02:11:16 -08:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-21 14:12:56 -07:00
|
|
|
pname = "readline";
|
2013-02-18 02:11:16 -08:00
|
|
|
version = "1.0.3.0";
|
|
|
|
sha256 = "1sszlx34qa88fad3wlhd4rkb1my1nrpzvyd8vq7dn806j5sf3ff0";
|
2009-05-28 12:06:33 -07:00
|
|
|
propagatedBuildInputs = [ readline ncurses ];
|
2009-04-23 10:48:06 -07: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 14:12:56 -07:00
|
|
|
meta = {
|
|
|
|
description = "An interface to the GNU readline library";
|
2011-08-15 04:27:02 -07:00
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-02-18 02:11:16 -08:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-04-21 14:12:56 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|