From b32adae9a8ea8bfce65f6fc943f6be63926b510e Mon Sep 17 00:00:00 2001
From: Daniel Firth <dan.firth@homotopic.tech>
Date: Sun, 23 Oct 2022 08:07:01 +0100
Subject: [PATCH] lucid-aria: init at 0.1.0.1

---
 manifest.dhall      |  1 +
 overlay.nix         |  2 ++
 pkgs/lucid-aria.nix | 15 +++++++++++++++
 3 files changed, 18 insertions(+)
 create mode 100644 pkgs/lucid-aria.nix

diff --git a/manifest.dhall b/manifest.dhall
index 31bbe62c..80093932 100644
--- a/manifest.dhall
+++ b/manifest.dhall
@@ -279,6 +279,7 @@ in  [ callHackage "Cabal" "3.8.1.0"
     , callHackage "lsp-types" "1.6.0.0"
     , callHackage "lsp" "1.6.0.0"
     , callHackage "lucid-alpine" "0.1.0.7"
+    , callHackage "lucid-aria" "0.1.0.1"
     , callHackage "lucid-svg" "0.7.1"
     , callHackage "lucid" "2.11.1"
     , callHackage "net-mqtt" "0.8.2.2"
diff --git a/overlay.nix b/overlay.nix
index 63acedb3..6df84c42 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -323,6 +323,8 @@ final: prev: with pkgs.haskell.lib; {
 
     lucid-alpine = prev.callPackage (./pkgs/lucid-alpine.nix) { };
 
+    lucid-aria = prev.callPackage (./pkgs/lucid-aria.nix) { };
+
     lucid-svg = prev.callPackage (./pkgs/lucid-svg.nix) { };
 
     memory = prev.callPackage (./pkgs/memory.nix) { };
diff --git a/pkgs/lucid-aria.nix b/pkgs/lucid-aria.nix
new file mode 100644
index 00000000..b5033e09
--- /dev/null
+++ b/pkgs/lucid-aria.nix
@@ -0,0 +1,15 @@
+{ mkDerivation, base, hspec, HUnit, lib, lucid, text }:
+mkDerivation {
+  pname = "lucid-aria";
+  version = "0.1.0.1";
+  sha256 = "ff30430e76e1224eee79667a0d28a513fb88f223036debdd06dd1e33f650b088";
+  libraryHaskellDepends = [ base lucid text ];
+  testHaskellDepends = [ base hspec HUnit lucid ];
+  doHaddock = false;
+  jailbreak = true;
+  doCheck = false;
+  hyperlinkSource = false;
+  homepage = "https://git.sr.ht/~rycee/lucid-aria";
+  description = "Provides ARIA attributes for Lucid templates";
+  license = lib.licenses.asl20;
+}
\ No newline at end of file
-- 
GitLab