c6edd9a278
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
15 lines
383 B
Nix
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];
|
|
};
|
|
})
|
|
|