From cfa0313f8f38f54a74cb3f933a3f2882ee7ba13c Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Mon, 7 Nov 2022 18:30:30 +0000
Subject: [PATCH] chell-quickcheck: init at 0.2.5.3

---
 manifest.dhall            |  1 +
 overlay.nix               |  2 ++
 pkgs/chell-quickcheck.nix | 21 +++++++++++++++++++++
 3 files changed, 24 insertions(+)
 create mode 100644 pkgs/chell-quickcheck.nix

diff --git a/manifest.dhall b/manifest.dhall
index 2728c32f..b2fee5fa 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -147,6 +147,7 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "cereal" "0.5.8.3"
     , callHackage "charset" "0.3.9"
     , callHackage "checkers" "0.6.0"
+    , callHackage "chell-quickcheck" "0.2.5.3"
     , callHackage "chell" "0.5.0.1"
     , callHackage "citeproc" "0.8.0.1"
     , callHackage "clock" "0.8.3"
diff --git a/overlay.nix b/overlay.nix
index f6a5f52a..a77a84d3 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -181,6 +181,8 @@ self: with pkgs.haskell.lib; {
 
   chell = self.callPackage (./pkgs/chell.nix) { };
 
+  chell-quickcheck = self.callPackage (./pkgs/chell-quickcheck.nix) { };
+
   citeproc = self.callPackage (./pkgs/citeproc.nix) { };
 
   clock = self.callPackage (./pkgs/clock.nix) { };
diff --git a/pkgs/chell-quickcheck.nix b/pkgs/chell-quickcheck.nix
new file mode 100644
index 00000000..15c53b88
--- /dev/null
+++ b/pkgs/chell-quickcheck.nix
@@ -0,0 +1,21 @@
+{ mkDerivation, base, chell, lib, QuickCheck, random }:
+mkDerivation {
+  pname = "chell-quickcheck";
+  version = "0.2.5.3";
+  sha256 = "1db092893f392665dcdb8c422cad8e8b6e7a6d6c84da35c50fc7a757d47ea2ae";
+  isLibrary = true;
+  isExecutable = false;
+  enableSeparateDataOutput = false;
+  libraryHaskellDepends = [ base chell QuickCheck random ];
+  enableLibraryProfiling = false;
+  enableExecutableProfiling = false;
+  doHaddock = false;
+  jailbreak = true;
+  doCheck = false;
+  doBenchmark = false;
+  hyperlinkSource = false;
+  homepage = "https://github.com/typeclasses/chell";
+  description = "QuickCheck support for the Chell testing library";
+  license = lib.licenses.mit;
+  broken = false;
+}
-- 
GitLab