fd258d6fe1
Some downgrades were necessary. svn path=/nixpkgs/trunk/; revision=28364
16 lines
539 B
Nix
16 lines
539 B
Nix
{cabal, attempt, transformers} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "control-monad-attempt";
|
|
version = "0.3.0";
|
|
sha256 = "1l0bqb5h2fs7vx2r8nd6kscyyrrqc0gshnxwdz9p6clfnknyqbqw";
|
|
propagatedBuildInputs = [ attempt transformers ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/control-monad-attempt";
|
|
description = "Monad transformer for attempt.";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|