guix_mirror_bot pushed a commit to branch kernel-updates in repository guix.
commit 9be9a4a9f557a35e10c0594b7c73ad7e0cadda0f Author: Aaron Covrig <[email protected]> AuthorDate: Tue Jul 8 16:44:50 2025 +0200 gnu: sirikali: Update to 1.6.0. * gnu/packages/file-systems.scm (sirikali): Update to 1.6.0. [arguments]<#:configure-flags>: Use cmake release build type. [synopsis, description]: Clarify. [license]: Switch to gpl3+, as corresponds to COPYRIGHT in the source code. Change-Id: I4f9875b8a3dd1ce9d226cee024999c0c30b67bec Signed-off-by: Andreas Enge <[email protected]> --- gnu/packages/file-systems.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 0339573e24..ea32f7ef1f 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2021 Noisytoot <[email protected]> ;;; Copyright © 2021, 2023 Kaelyn Takata <[email protected]> ;;; Copyright © 2022 Brian Cully <[email protected]> -;;; Copyright © 2023 Aaron Covrig <[email protected]> +;;; Copyright © 2023, 2024 Aaron Covrig <[email protected]> ;;; Copyright © 2024 Ahmad Draidi <[email protected]> ;;; Copyright © 2024 Zheng Junjie <[email protected]> ;;; Copyright © 2025 Julian Flake <[email protected]> @@ -2467,7 +2467,7 @@ filtering and ordering functionality. (define-public sirikali (package (name "sirikali") - (version "1.5.1") + (version "1.6.0") (source (origin (method git-fetch) (uri (git-reference @@ -2476,16 +2476,16 @@ filtering and ordering functionality. (file-name (git-file-name name version)) (sha256 (base32 - "1l52s8rxkfcxcx3s2fnsh08wy6hhjjvp7gcggdi84aqc4dq3rdnm")))) + "06cl7srxaqpzv7gcd17cl78qhrpqhdvpfcj4pr73fr5hhackrf52")))) (build-system cmake-build-system) (arguments '(#:tests? #f ;No tests - #:configure-flags '("-DQT5=true"))) + #:configure-flags '("-DQT5=true" "-DCMAKE_BUILD_TYPE=RELEASE"))) (inputs (list xdg-utils libpwquality libgcrypt libsecret qtbase-5)) (native-inputs (list pkg-config)) (home-page "https://mhogomchungu.github.io/sirikali/") - (synopsis "Graphical program for managing encrypted file-systems") - (description "@dfn{SiriKali} is a Qt / C++ @acronym{GUI, graphical user -interface} application that manages ecryptfs, cryfs, encfs, gocryptfs, fscrypt -and securefs based encrypted folders.") - (license license:gpl2+))) + (synopsis "GUI front end to sshfs, ecryptfs, cryfs, gocryptfs, securefs, fscrypt and encfs") + (description "@dfn{SiriKali} is a Qt/C++ GUI application that manages ++ecryptfs, cryfs, encfs, gocryptfs, fscrypt and securefs ++based encrypted folders.") + (license license:gpl3+)))
