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";
|
2013-01-25 05:52:03 -08:00
|
|
|
version = "0.6.6";
|
|
|
|
sha256 = "1zkbiv5cpdgjiyn2nrrha29r84al7jg6647flqmc8riz2nn91zqy";
|
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;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-10-04 02:28:05 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|