summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/attempt/0.3.1.1.nix
blob: a08f09b5503404020a588f99b03fa25a010f8e13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, failure }:

cabal.mkDerivation (self: {
  pname = "attempt";
  version = "0.3.1.1";
  sha256 = "0yfn8mh7gy6nh689ic6sygf9d7lk44kpj2wahnljl53k6vw7smv5";
  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 ];
  };
})