3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
423 B
Nix
15 lines
423 B
Nix
{ cabal, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "mtl";
|
|
version = "2.1.1";
|
|
sha256 = "143s0c5hygwnd72x14jwinpnd92gx4y9blhmv6086rxijqbq6l4j";
|
|
buildDepends = [ transformers ];
|
|
meta = {
|
|
description = "Monad classes, using functional dependencies";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|