2012-12-10 10:24:10 +00:00
|
|
|
{ cabal, either, safe, transformers }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "errors";
|
2014-01-01 23:21:13 +00:00
|
|
|
version = "1.4.5";
|
|
|
|
sha256 = "16m4psk1150319bd2hrswpp2h90l1hhh7w13arfhy4ylh8vscm4q";
|
2012-12-10 10:24:10 +00:00
|
|
|
buildDepends = [ either safe transformers ];
|
2013-10-14 23:18:17 +01:00
|
|
|
jailbreak = true;
|
2012-12-10 10:24:10 +00:00
|
|
|
meta = {
|
|
|
|
description = "Simplified error-handling";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|