haskell-attempt: added version 0.4.0

svn path=/nixpkgs/trunk/; revision=32176
This commit is contained in:
Peter Simons
2012-02-10 11:32:40 +00:00
parent cf686eaa50
commit eb9badcd21
3 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, failure }:
cabal.mkDerivation (self: {
pname = "attempt";
version = "0.4.0";
sha256 = "0n7srd1gy1fa0q1qzizvdgmrc078jyx47115aw85vvl74vh9qyjy";
buildDepends = [ failure ];
meta = {
homepage = "http://github.com/snoyberg/attempt/tree/master";
description = "Concrete data type for handling extensible exceptions as failures";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})