nixpkgs/pkgs/development/libraries/haskell/attempt/default.nix
Peter Simons c031fccf5e Dropped obsolete Haskell packages.
- convertible-text: deprecated by author
 - failure: obsolete version 0.1.2
 - attempt: obsolete version 0.3.1.1

svn path=/nixpkgs/trunk/; revision=33470
2012-03-29 11:17:31 +00:00

16 lines
503 B
Nix

{ 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 ];
};
})