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