From f8a62e37634583e7f3d027221e530fc1415546d5 Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Sun, 19 Feb 2023 14:47:35 +0000
Subject: [PATCH] testing-feat: init at 1.1.1.1

---
 horizon.dhall         |  1 +
 initial-packages.nix  |  2 ++
 pkgs/testing-feat.nix | 32 ++++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+)
 create mode 100644 pkgs/testing-feat.nix

diff --git a/horizon.dhall b/horizon.dhall
index 45c75040..6dd688b6 100644
--- a/horizon.dhall
+++ b/horizon.dhall
@@ -995,6 +995,7 @@ let packages =
           H.callHackage "test-framework-quickcheck2" "0.3.0.5"
       , test-framework-smallcheck =
           H.callHackage "test-framework-smallcheck" "0.2"
+      , testing-feat = H.callHackage "testing-feat" "1.1.1.1"
       , testing-type-modifiers =
           H.callHackage "testing-type-modifiers" "0.1.0.1"
       , texmath = H.callHackage "texmath" "0.12.5.4"
diff --git a/initial-packages.nix b/initial-packages.nix
index 2e7c9397..7358862a 100644
--- a/initial-packages.nix
+++ b/initial-packages.nix
@@ -1637,6 +1637,8 @@ self: with pkgs.haskell.lib; {
 
   test-framework-th = self.callPackage (./pkgs/test-framework-th.nix) { };
 
+  testing-feat = self.callPackage (./pkgs/testing-feat.nix) { };
+
   testing-type-modifiers = self.callPackage (./pkgs/testing-type-modifiers.nix) { };
 
   texmath = self.callPackage (./pkgs/texmath.nix) { };
diff --git a/pkgs/testing-feat.nix b/pkgs/testing-feat.nix
new file mode 100644
index 00000000..c4d7ce03
--- /dev/null
+++ b/pkgs/testing-feat.nix
@@ -0,0 +1,32 @@
+{ mkDerivation
+, QuickCheck
+, base
+, lib
+, size-based
+, testing-type-modifiers
+}:
+mkDerivation {
+  pname = "testing-feat";
+  version = "1.1.1.1";
+  sha256 = "c2c988b816b62c1e16ed611cccfbe7b1f4c53ab650b320bb193ccefc58a4a691";
+  isLibrary = true;
+  isExecutable = false;
+  enableSeparateDataOutput = false;
+  libraryHaskellDepends = [
+    base
+    QuickCheck
+    size-based
+    testing-type-modifiers
+  ];
+  enableLibraryProfiling = true;
+  enableExecutableProfiling = true;
+  doHaddock = false;
+  jailbreak = true;
+  doCheck = false;
+  doBenchmark = false;
+  hyperlinkSource = false;
+  homepage = "https://github.com/size-based/testing-feat";
+  description = "Functional Enumeration of Algebraic Types";
+  license = lib.licenses.bsd3;
+  broken = false;
+}
-- 
GitLab