blob: 91d2966565fddbbc9b08ecb89a9cee7e34592bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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"))))))
|