nixpkgs/pkgs/development/libraries/haskell/mmorph/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
339 B
Nix

{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "mmorph";
version = "1.0.0";
sha256 = "10r8frcn6ar56n1vxy8rkys8j52f8xkqan8qxqanka1150k6khqk";
buildDepends = [ transformers ];
meta = {
description = "Monad morphisms";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})