From 623de268a22fcd37ea98fce19ebd74a9385f42ba Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Mon, 7 Nov 2022 12:06:27 +0000
Subject: [PATCH] xml-types: init at 0.3.8

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

diff --git a/manifest.dhall b/manifest.dhall
index 3c72a237..bec04fb4 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -832,6 +832,7 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "x509-validation" "1.6.12"
     , callHackage "x509" "1.7.7"
     , callHackage "xml-conduit" "1.9.1.1"
+    , callHackage "xml-types" "0.3.8"
     , callHackage "xml" "1.3.14"
     , callHackage "yaml" "0.11.8.0"
     , callHackage "zip-archive" "0.4.2.2"
diff --git a/overlay.nix b/overlay.nix
index 6432e5a7..6fd1bd58 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -1293,6 +1293,8 @@ self: with pkgs.haskell.lib; {
 
   xml-conduit = self.callPackage (./pkgs/xml-conduit.nix) { };
 
+  xml-types = self.callPackage (./pkgs/xml-types.nix) { };
+
   yaml = self.callPackage (./pkgs/yaml.nix) { };
 
   zip-archive = self.callPackage (./pkgs/zip-archive.nix) { };
diff --git a/pkgs/xml-types.nix b/pkgs/xml-types.nix
new file mode 100644
index 00000000..27e165ec
--- /dev/null
+++ b/pkgs/xml-types.nix
@@ -0,0 +1,21 @@
+{ mkDerivation, base, deepseq, lib, text }:
+mkDerivation {
+  pname = "xml-types";
+  version = "0.3.8";
+  sha256 = "dad5e4ce602b7d1f4be37c0cfd99a261a4573746bfd80d917dc955b72da84c80";
+  isLibrary = true;
+  isExecutable = false;
+  enableSeparateDataOutput = false;
+  libraryHaskellDepends = [ base deepseq text ];
+  enableLibraryProfiling = false;
+  enableExecutableProfiling = false;
+  doHaddock = false;
+  jailbreak = true;
+  doCheck = false;
+  doBenchmark = false;
+  hyperlinkSource = false;
+  homepage = "https://git.singpolyma.net/xml-types-haskell";
+  description = "Basic types for representing XML";
+  license = lib.licenses.mit;
+  broken = false;
+}
-- 
GitLab