diff --git a/manifest.dhall b/manifest.dhall
index 2728c32f239e76cc344302788d9173705ceff75c..b2fee5fa9306e65099da09cf90d884073fcfc03e 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 f6a5f52aca54822516e50e1e3e2a886dfda4d033..a77a84d3ac01bfa8500687ae58c6f8593e5f46c0 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 0000000000000000000000000000000000000000..15c53b8884d07e4b529aa134ac9cedc354e85bc1
--- /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;
+}