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

QuickCheck: init at 2.14.2

parent 6db81e96
No related merge requests found
...@@ -71,6 +71,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -71,6 +71,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "OneTuple" "0.3.1" , callHackage "OneTuple" "0.3.1"
, callHackage "OpenGLRaw" "3.3.4.1" , callHackage "OpenGLRaw" "3.3.4.1"
, callHackage "PyF" "0.11.1.0" , callHackage "PyF" "0.11.1.0"
, callHackage "QuickCheck" "2.14.2"
, callHackage "adjunctions" "4.4.2" , callHackage "adjunctions" "4.4.2"
, callHackage "aeson" "2.1.0.0" , callHackage "aeson" "2.1.0.0"
, callHackage "aeson-pretty" "0.8.9" , callHackage "aeson-pretty" "0.8.9"
......
...@@ -25,6 +25,8 @@ self: with pkgs.haskell.lib; { ...@@ -25,6 +25,8 @@ self: with pkgs.haskell.lib; {
PyF = self.callPackage (./pkgs/PyF.nix) { }; PyF = self.callPackage (./pkgs/PyF.nix) { };
QuickCheck = self.callPackage (./pkgs/QuickCheck.nix) { };
adjunctions = self.callPackage (./pkgs/adjunctions.nix) { }; adjunctions = self.callPackage (./pkgs/adjunctions.nix) { };
aeson = self.callPackage (./pkgs/aeson.nix) { }; aeson = self.callPackage (./pkgs/aeson.nix) { };
......
{ mkDerivation
, base
, containers
, deepseq
, lib
, process
, random
, splitmix
, template-haskell
, transformers
}:
mkDerivation {
pname = "QuickCheck";
version = "2.14.2";
sha256 = "d87b6c85696b601175274361fa62217894401e401e150c3c5d4013ac53cd36f3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
deepseq
random
splitmix
template-haskell
transformers
];
testHaskellDepends = [ base deepseq process ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/nick8325/quickcheck";
description = "Automatic testing of Haskell programs";
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