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