summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/errors/default.nix
blob: 7ed890c513c5e55102c021c44a05c7293264ca20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal, either, safe, transformers }:

cabal.mkDerivation (self: {
  pname = "errors";
  version = "1.4.1";
  sha256 = "18npfwr6byh0aib9qxpynr2gf0v92c0xbxky4a733jbdrwli5c40";
  buildDepends = [ either safe transformers ];
  meta = {
    description = "Simplified error-handling";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})