zaphyra's git: tgcNUR

fork of https://git.transgirl.cafe/zaphoid/tgc-nix-user-repository

commit a72a443be912dd9808d5e2f5be6f220caba387c1
parent 23fed5c92fa50d65f00eb815f21cfb58e5458ec7
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Sun, 24 Aug 2025 15:58:37 +0200

packages/gomuks-web: update rev, add override option for extra patches
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/packages/gomuks-web/package.nix b/packages/gomuks-web/package.nix
@@ -6,14 +6,15 @@
   buildGoModule,
   buildNpmPackage,
   unstableGitUpdater,
+  extraPatches ? [ ],
 }:
 
 buildGoModule (finalAttrs: {
   pname = "gomuks-web";
   version = "0.4.0-unstable-2025-08-19";
-  rev = "85915b62b390c152a6cb36f4bbb9e5ff25af2cae";
+  rev = "6d8af2f7b79ab9ef3b995c897ea4c1518cf8d195";
 
-  srcHash = "sha256-LtNDr+gYFUrzhycKfUvJQpIiqbUR5S+fr3WzFk40gfk=";
+  srcHash = "sha256-Hy8AVQ7/bkC+oULdyXSdw3beuRj0cs1270UgTipJ2ys=";
   npmDepsHash = "sha256-E2hCrEEsx9VvM2ypomn7EPv+ggLNrrirrqGl2oxeu+Y=";
   vendorHash = "sha256-7/KkmoetpliQ8+o78/hENWVNPl6Y9YZPXMt+YgVKg0w=";
 

@@ -27,7 +28,8 @@ buildGoModule (finalAttrs: {
     patches = [
       ./0001-web-remove-underscore-from-gomuks.wasm.patch
       ./0001-cmd-gmuks-add-flag-to-disable-auth.patch
-    ];
+    ]
+    ++ extraPatches;
   };
 
   frontend = buildNpmPackage (frontendFinalAttrs: {