1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 17:37:37 -04:00
nixpkgs/pkgs/development/libraries/haskell/monads-tf/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

15 lines
421 B
Nix

{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "monads-tf";
version = "0.1.0.1";
sha256 = "19za12iazwrbqwpxy6lkj01dwm921386ryxgdqvcqisn8cj6jm1v";
buildDepends = [ transformers ];
meta = {
description = "Monad classes, using type families";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})