diff options
| author | bdunahu <bdunahu@operationnull.com> | 2026-03-03 13:22:53 -0500 |
|---|---|---|
| committer | bdunahu <bdunahu@operationnull.com> | 2026-03-03 14:17:46 -0500 |
| commit | 2cd59164678b4d70f7d7d874a63ee1b01712fc9a (patch) | |
| tree | ecc622bf9dc2f35954ed32814e53382735f8c216 /modules/tanelorn/packages/messaging.scm | |
| parent | 1f6ff5be08d82c3536fa5ba609ce43fe614c51c7 (diff) | |
tanelorn: Add nheko-patched.
* modules/tanelorn/packages/messaging.scm (nheko-patched): New variable.
* README: Add nheko-patched.
Diffstat (limited to 'modules/tanelorn/packages/messaging.scm')
| -rw-r--r-- | modules/tanelorn/packages/messaging.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/tanelorn/packages/messaging.scm b/modules/tanelorn/packages/messaging.scm new file mode 100644 index 0000000..91d2966 --- /dev/null +++ b/modules/tanelorn/packages/messaging.scm @@ -0,0 +1,31 @@ +;;; 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")))))) |
