summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorbdunahu <bdunahu@operationnull.com>2026-04-04 13:20:02 -0400
committerbdunahu <bdunahu@operationnull.com>2026-04-04 13:20:02 -0400
commitb71b0e8aab2a09415ea7c93e51eb9fa3b56d596c (patch)
treee546afa30ba2f317d3cc9c778ef0e045ee7d8119 /modules
parentfbaaf97b1c5fc0fffaa13be6a3e1f270a6643fc7 (diff)
tanelorn: Remove nheko-patched.
In mainline guix now. * modules/tanelorn/packages/messaging.scm (nheko-patched): Removed variable. * README: Removed nheko-patched.
Diffstat (limited to 'modules')
-rw-r--r--modules/tanelorn/packages/messaging.scm31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/tanelorn/packages/messaging.scm b/modules/tanelorn/packages/messaging.scm
deleted file mode 100644
index 91d2966..0000000
--- a/modules/tanelorn/packages/messaging.scm
+++ /dev/null
@@ -1,31 +0,0 @@
-;;; Copyright © 2026 bdunahu <bdunahu@operationnull.com>
-;;;
-;;; SPDX-License-Identifier: GPL-3.0-or-later
-
-(define-module (tanelorn packages messaging)
- #:use-module ((guix licenses) #:prefix license:)
- #:use-module (guix git-download)
- #:use-module (guix gexp)
- #:use-module (guix packages)
- #:use-module (tanelorn packages)
- #:use-module (gnu packages messaging))
-
-(define-public nheko-patched
- (package/inherit nheko
- (name "nheko-patched")
- (version "0.12.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/Nheko-Reborn/nheko")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "098jqccwsfbqkdpnhbych2rd076385wb51fx9qyjfiddidxv2mas"))
- (modules '((guix build utils)))
- (snippet '(delete-file-recursively "third_party"))
- ;; XXX: release 0.12.1 has a major bug which prevents replies from
- ;; rendering https://github.com/Nheko-Reborn/nheko/issues/1944
- (patches
- (tanelorn-patches "nheko-0-12-1-fix-rendering-replies.patch"))))))