summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/attempt/default.nix
blob: c000002d4998b8a7f570524d1a4c8a175e812e2a (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.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 ];
  };
})