nixpkgs/pkgs/development/libraries/haskell/ChasingBottoms/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
425 B
Nix

{ cabal, mtl, QuickCheck, random, syb }:
cabal.mkDerivation (self: {
pname = "ChasingBottoms";
version = "1.3.0.5";
sha256 = "0g3c52c8gpm0xlnxxdgazz0f7zpnjvdx5vffsv1zr3vcn3kp1xy0";
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl QuickCheck random syb ];
meta = {
description = "For testing partial and infinite values";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})