[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/18: gnu: Add sortfilterproxymodel.
From: |
guix-commits |
Subject: |
16/18: gnu: Add sortfilterproxymodel. |
Date: |
Tue, 9 Jan 2024 12:40:10 -0500 (EST) |
apteryx pushed a commit to branch telephony-team
in repository guix.
commit 2c062c2415e54cfaef19d19aaaa8c3562587cd72
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Jan 8 10:45:18 2024 -0500
gnu: Add sortfilterproxymodel.
* gnu/packages/jami.scm (sortfilterproxymodel): New variable.
Change-Id: I7c46fce26d5fcdc98e8646e65dd119155a8b9287
---
gnu/packages/jami.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm
index c035a966c7..4d1b3a3db2 100644
--- a/gnu/packages/jami.scm
+++ b/gnu/packages/jami.scm
@@ -172,6 +172,45 @@ service definitions.")
(home-page "https://jami.net/";)
(license license:gpl3+)))
+;;; Private package; this is used in source form: the project build system has
+;;; no install target.
+(define sortfilterproxymodel
+ ;; Use the latest commit available from the 'qt-6' branch.
+ (let ((commit "6cc21205dbf36640613f0e6e67b2b13b1855c377")
+ (revision "0"))
+ (package
+ (name "sortfilterproxymodel")
+ ;; There are no recent release tag; the module version defined in the
+ ;; source is used (see:
+ ;; https://github.com/oKcerG/SortFilterProxyModel/blob/
+ ;; 5a930885b7ea99f7f41c25fce08bf8006ee54e3f/
+ ;; qqmlsortfilterproxymodel.cpp#L574C15-L574C15).
+ (version (git-version "0.2" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; The upstream is
+ ;; https://github.com/oKcerG/SortFilterProxyModel, but
+ ;; it lacks Qt 6 support, so use this fork, which is the
+ ;; one used by Jami.
+ (url "https://github.com/atraczyk/SortFilterProxyModel";)
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1n54jkimr3a818i3w7w3lnbqn47x72nnr5xi9vk0mdnbwri3viwy"))))
+ (build-system qt-build-system)
+ (arguments
+ (list #:qtbase qtbase ;use Qt 6
+ #:tests? #f ;no test suite
+ #:configure-flags #~(list "BUILD_SFPM_PIC=ON")))
+ (inputs (list qtdeclarative))
+ (home-page "https://github.com/oKcerG/SortFilterProxyModel";)
+ (synopsis "Improved QSortFilterProxyModel implementation for QML")
+ (description "SortFilterProxyModel is an implementation of
+QSortFilterProxyModel conveniently exposed for QML.")
+ (license license:expat))))
+
(define-public jami
(package
(name "jami")
- 03/18: gnu: asio: Update to 1.28.0., (continued)
- 03/18: gnu: asio: Update to 1.28.0., guix-commits, 2024/01/09
- 02/18: gnu: libnatpmp: Update home page., guix-commits, 2024/01/09
- 01/18: gnu: libnatpmp: Use gexps and simplify., guix-commits, 2024/01/09
- 04/18: gnu: catch2-3: Update to 3.5.1., guix-commits, 2024/01/09
- 09/18: gnu: libnatpmp: Update to 20230423-0.6a850fd., guix-commits, 2024/01/09
- 13/18: gnu: pjproject-jami: Update and relocate., guix-commits, 2024/01/09
- 14/18: gnu: ffmpeg-jami: Update configure flags., guix-commits, 2024/01/09
- 15/18: gnu: ffmpeg-jami: Relocate to (gnu packages video)., guix-commits, 2024/01/09
- 17/18: gnu: jami: Update to 20231222.2., guix-commits, 2024/01/09
- 05/18: gnu: Add expected-lite., guix-commits, 2024/01/09
- 16/18: gnu: Add sortfilterproxymodel.,
guix-commits <=
- 06/18: gnu: Add llhttp., guix-commits, 2024/01/09
- 08/18: gnu: restinio: Update to 0.7.1., guix-commits, 2024/01/09
- 07/18: gnu: Add xdiff., guix-commits, 2024/01/09
- 10/18: gnu: msgpack: Deprecate with msgpack-c., guix-commits, 2024/01/09
- 11/18: gnu: opendht: Update to 3.1.7., guix-commits, 2024/01/09
- 12/18: gnu: Add dhtnet., guix-commits, 2024/01/09
- 18/18: gnu: jami-docs: Update to 0.0.0-2.a48997d., guix-commits, 2024/01/09