From b685ef27e6d369765b8c1e67249a55208a82782f Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Sat, 5 Nov 2022 12:39:27 +0000
Subject: [PATCH] th-reify-many: init at 0.1.10

---
 manifest.dhall         |  1 +
 overlay.nix            |  2 ++
 pkgs/th-reify-many.nix | 37 +++++++++++++++++++++++++++++++++++++
 3 files changed, 40 insertions(+)
 create mode 100644 pkgs/th-reify-many.nix

diff --git a/manifest.dhall b/manifest.dhall
index 14fa3a50..b135ba5f 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -576,6 +576,7 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "th-expand-syns" "0.4.10.0"
     , callHackage "th-extras" "0.0.0.6"
     , callHackage "th-lift-instances" "0.1.20"
+    , callHackage "th-reify-many" "0.1.10"
     , callHackage "tidal" "1.8.1"
     , callHackage "time-compat" "1.9.6.1"
     , callCabal2nix
diff --git a/overlay.nix b/overlay.nix
index a8e2d24c..92eb2d1b 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -779,6 +779,8 @@ final: prev: with pkgs.haskell.lib; {
 
   th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { };
 
+  th-reify-many = prev.callPackage (./pkgs/th-reify-many.nix) { };
+
   these = prev.callPackage (./pkgs/these.nix) { };
 
   these-skinny = prev.callPackage (./pkgs/these-skinny.nix) { };
diff --git a/pkgs/th-reify-many.nix b/pkgs/th-reify-many.nix
new file mode 100644
index 00000000..cd5fa8c3
--- /dev/null
+++ b/pkgs/th-reify-many.nix
@@ -0,0 +1,37 @@
+{ mkDerivation
+, base
+, containers
+, lib
+, mtl
+, safe
+, template-haskell
+, th-expand-syns
+}:
+mkDerivation {
+  pname = "th-reify-many";
+  version = "0.1.10";
+  sha256 = "9d250e61242f2fb887dedc9d28c0141832ff256e63bebc2bf5abff81037be4a5";
+  isLibrary = true;
+  isExecutable = false;
+  enableSeparateDataOutput = false;
+  libraryHaskellDepends = [
+    base
+    containers
+    mtl
+    safe
+    template-haskell
+    th-expand-syns
+  ];
+  testHaskellDepends = [ base template-haskell ];
+  enableLibraryProfiling = false;
+  enableExecutableProfiling = false;
+  doHaddock = false;
+  jailbreak = true;
+  doCheck = false;
+  doBenchmark = false;
+  hyperlinkSource = false;
+  homepage = "http://github.com/mgsloan/th-reify-many";
+  description = "Recurseively reify template haskell datatype info";
+  license = lib.licenses.bsd3;
+  broken = false;
+}
-- 
GitLab