2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, ansiTerminal, Cabal }:
|
2009-10-04 09:28:05 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2009-10-04 09:28:05 +00:00
|
|
|
pname = "ansi-wl-pprint";
|
2012-01-27 20:31:06 +00:00
|
|
|
version = "0.6.4";
|
|
|
|
sha256 = "0zrhzkmc5ki6q9ac5l16lhnyf9z2raj78gj9n0a7530rcv4ak3k0";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ ansiTerminal Cabal ];
|
2009-10-04 09:28:05 +00:00
|
|
|
meta = {
|
2011-08-07 22:02:44 +00:00
|
|
|
homepage = "http://github.com/batterseapower/ansi-wl-pprint";
|
2009-10-04 09:28:05 +00:00
|
|
|
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
|
2011-08-07 22:02:44 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-09 23:00:20 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-10-04 09:28:05 +00:00
|
|
|
};
|
2011-03-28 15:04:00 +00:00
|
|
|
})
|