2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, deepseq, mtl, parallel, parsec, terminfo, utf8String
|
|
|
|
, vector
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-08-07 21:33:34 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 21:33:34 +02:00
|
|
|
pname = "vty";
|
2012-05-28 12:23:20 +02:00
|
|
|
version = "4.7.0.14";
|
|
|
|
sha256 = "0wgn2jbr7lih9znkpa09nvb4qjd0801c0r4mwwrw4pd9n9mkjqn9";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
deepseq mtl parallel parsec terminfo utf8String vector
|
2011-08-07 21:33:34 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/coreyoconnor/vty";
|
|
|
|
description = "A simple terminal access library";
|
|
|
|
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 ];
|
2011-08-07 21:33:34 +02:00
|
|
|
};
|
|
|
|
})
|