nixpkgs/pkgs/development/libraries/haskell/monads-fd/0.0.0.1.nix
Peter Simons c6edd9a278 haskell-monads-fd: added new version 0.2.0.0
Unfortunately, the old version no longer compiles because it can't deal
with current versions of the transformers package. This means that some
other packages that depend on the old monads-fd package, such as
MaybeT-transformers, are broken, too.

svn path=/nixpkgs/trunk/; revision=28278
2011-08-07 20:24:54 +00:00

15 lines
383 B
Nix

{cabal, transformers}:
cabal.mkDerivation (self : {
pname = "monads-fd";
version = "0.0.0.1";
sha256 = "7eaac97b2c91a670171f18ebeb3f73b1a45e16576851279f73ea2e1f5ec63b25";
propagatedBuildInputs = [transformers];
meta = {
description = "Monad classes, using functional dependencies";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})