2013-03-10 00:26:26 +01:00
|
|
|
{ cabal, nats, semigroupoids, semigroups, text, utf8String }:
|
2013-02-26 11:38:29 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "wl-pprint-extras";
|
2013-03-10 00:26:26 +01:00
|
|
|
version = "3.4";
|
|
|
|
sha256 = "17vxyckx2pj4sc2d1yw1rcsxn1rp4nzdjp0hgpy78xsp9plccgsy";
|
|
|
|
buildDepends = [ nats semigroupoids semigroups text utf8String ];
|
2013-02-26 11:38:29 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ekmett/wl-pprint-extras/";
|
|
|
|
description = "A free monad based on the Wadler/Leijen pretty printer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|