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

cabal.mkDerivation (self: {
  pname = "spoon";
  version = "0.3.1";
  sha256 = "1m41k0mfy6fpfrv2ym4m5jsjaj9xdfl2iqpppd3c4d0fffv51cxr";
  buildDepends = [ deepseq ];
  meta = {
    description = "Catch errors thrown from pure computations";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})