about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/ChasingBottoms/default.nix
blob: b22272a7703326fefe94e7d1b9b080d3cf3503c4 (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.7";
  sha256 = "0g1bx6d2mi27qsb4bxvby50g39fm56gyi2658fyjiq1gamy50ypa";
  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;
  };
})