fd258d6fe1
Some downgrades were necessary. svn path=/nixpkgs/trunk/; revision=28364
16 lines
534 B
Nix
16 lines
534 B
Nix
{cabal, failure} :
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "attempt";
|
|
version = "0.3.1.1";
|
|
sha256 = "0yfn8mh7gy6nh689ic6sygf9d7lk44kpj2wahnljl53k6vw7smv5";
|
|
propagatedBuildInputs = [ 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.stdenv.lib.platforms.haskellPlatforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|