about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ChasingBottoms/default.nix
blob: 719e5eb2cee981aeeae34e15577634e3fa3cd8fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, mtl, QuickCheck, random, syb }:

cabal.mkDerivation (self: {
  pname = "ChasingBottoms";
  version = "1.3.0.6";
  sha256 = "1l40n1ylzrbp0lhm80q9djl8mf39zvmw7zzlg0gzxsqbzwbsggx8";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ mtl QuickCheck random syb ];
  meta = {
    description = "For testing partial and infinite values";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})