nixpkgs/pkgs/development/libraries/haskell/wl-pprint-extras/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

14 lines
517 B
Nix

{ cabal, nats, semigroupoids, semigroups, text, utf8String }:
cabal.mkDerivation (self: {
pname = "wl-pprint-extras";
version = "3.4";
sha256 = "17vxyckx2pj4sc2d1yw1rcsxn1rp4nzdjp0hgpy78xsp9plccgsy";
buildDepends = [ nats semigroupoids semigroups text utf8String ];
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;
};
})