2012-12-10 11:24:10 +01:00
|
|
|
{ cabal, either, safe, transformers }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "errors";
|
2013-12-09 13:03:19 +01:00
|
|
|
version = "1.4.4";
|
|
|
|
sha256 = "1mhh5xna5nppqg8aw93iil7nsnpx5j6r21a12bx4mmip8nzr6480";
|
2012-12-10 11:24:10 +01:00
|
|
|
buildDepends = [ either safe transformers ];
|
2013-10-15 00:18:17 +02:00
|
|
|
jailbreak = true;
|
2012-12-10 11:24:10 +01:00
|
|
|
meta = {
|
|
|
|
description = "Simplified error-handling";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|