2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, extensibleExceptions, ncurses }:
|
2009-06-10 18:27:39 +02:00
|
|
|
|
2011-08-14 01:38:52 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-10 18:27:39 +02:00
|
|
|
pname = "terminfo";
|
2011-11-13 02:38:06 +01:00
|
|
|
version = "0.3.2.3";
|
|
|
|
sha256 = "06y2vx7d4hl55p3p1c7yj2lx8yaw14c5h2qclj8m5xg2wkifnf5f";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ extensibleExceptions ];
|
2011-08-14 01:38:52 +02:00
|
|
|
extraLibraries = [ ncurses ];
|
2009-06-10 18:27:39 +02:00
|
|
|
meta = {
|
2011-08-08 00:02:28 +02:00
|
|
|
homepage = "http://code.haskell.org/terminfo";
|
2011-08-14 01:38:52 +02:00
|
|
|
description = "Haskell bindings to the terminfo library";
|
2011-08-08 00:02:28 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-10 18:27:39 +02:00
|
|
|
};
|
|
|
|
})
|