2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, failure }:
|
2011-08-07 15:51:22 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 15:51:22 -07:00
|
|
|
pname = "attempt";
|
2012-02-10 03:32:40 -08:00
|
|
|
version = "0.4.0";
|
|
|
|
sha256 = "0n7srd1gy1fa0q1qzizvdgmrc078jyx47115aw85vvl74vh9qyjy";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ failure ];
|
2011-08-07 15:51:22 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/attempt/tree/master";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Concrete data type for handling extensible exceptions as failures";
|
2011-08-07 15:51:22 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:51:22 -07:00
|
|
|
};
|
|
|
|
})
|