Skip to content
Snippets Groups Projects
Commit 3a60d31f authored by Daniel Firth's avatar Daniel Firth
Browse files

quickcheck-classes: init at 0.6.5.0

parent c6f84e0f
Branches
Tags
No related merge requests found
......@@ -401,6 +401,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "prometheus-proc" "0.1.4.0"
, callHackage "proteaaudio-sdl" "0.9.2"
, callHackage "psqueues" "0.2.7.3"
, callHackage "quickcheck-classes" "0.6.5.0"
, callHackage "quickcheck-dynamic" "2.0.0"
, callHackage "quickcheck-instances" "0.3.28"
, callHackage "rebase" "1.16"
......
......@@ -509,6 +509,8 @@ final: prev: with pkgs.haskell.lib; {
psqueues = prev.callPackage (./pkgs/psqueues.nix) { };
quickcheck-classes = prev.callPackage (./pkgs/quickcheck-classes.nix) { };
quickcheck-dynamic = prev.callPackage (./pkgs/quickcheck-dynamic.nix) { };
quickcheck-instances = prev.callPackage (./pkgs/quickcheck-instances.nix) { };
......
{ mkDerivation
, aeson
, base
, base-orphans
, containers
, lib
, primitive
, primitive-addr
, QuickCheck
, quickcheck-classes-base
, semigroupoids
, semirings
, tagged
, tasty
, tasty-quickcheck
, transformers
, vector
}:
mkDerivation {
pname = "quickcheck-classes";
version = "0.6.5.0";
sha256 = "62e32ad01c194798ebfb1a39ea9c06ccd54bd6d21cf726e9d0fc9db56b093ca6";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
base
containers
primitive
primitive-addr
QuickCheck
quickcheck-classes-base
semigroupoids
semirings
transformers
vector
];
testHaskellDepends = [
aeson
base
base-orphans
containers
primitive
QuickCheck
semigroupoids
tagged
tasty
tasty-quickcheck
transformers
vector
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/andrewthad/quickcheck-classes#readme";
description = "QuickCheck common typeclasses";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment