This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8023f009f2 gnu: Add klevernotes.
8023f009f2 is described below
commit 8023f009f2025fab09efad99c0b962232f874ca2
Author: Ghislain Vaillant <[email protected]>
AuthorDate: Thu Dec 4 17:18:45 2025 +0100
gnu: Add klevernotes.
* gnu/packages/kde-office.scm (klevernotes): New variable.
Change-Id: Idcfe5ef2fa15ec972f7488a77331f94010593836
---
gnu/packages/kde-office.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 47 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-office.scm b/gnu/packages/kde-office.scm
index 6ca7be6bdb..496ca865bd 100644
--- a/gnu/packages/kde-office.scm
+++ b/gnu/packages/kde-office.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2024, 2025 Sughosha <[email protected]>
;;; Copyright © 2025 Junker <[email protected]>
+;;; Copyright © 2025 Ghislain Vaillant <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -55,7 +56,8 @@
#:use-module (gnu packages version-control)
#:use-module (gnu packages wm)
#:use-module (gnu packages xdisorg)
- #:use-module (gnu packages xml))
+ #:use-module (gnu packages xml)
+ #:use-module (gnu packages xorg))
(define-public calligra
(package
@@ -283,6 +285,50 @@ processor built in, and can integrate with Pandoc,
MultiMarkdown, Discount, and
cmark processors if they are installed.")
(license license:gpl3+)))
+(define-public klevernotes
+ (package
+ (name "klevernotes")
+ (version "1.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/klevernotes/" version
+ "/klevernotes-" version ".tar.xz"))
+ (sha256
+ (base32 "0jnnbsml29gmpbycx8b012rnzdnjfigp9d6wsaww085mql0rdf73"))))
+ (build-system qt-build-system)
+ (arguments
+ (list
+ #:qtbase qtbase
+ #:configure-flags
+ #~(list "-DBUILD_TESTING:BOOL=ON")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'start-xorg-server
+ (lambda _
+ (system "Xvfb :99 -screen 0 1024x768x24 &")
+ (setenv "DISPLAY" ":99.0"))))))
+ (native-inputs (list extra-cmake-modules xorg-server))
+ (inputs (list kconfigwidgets
+ kcoreaddons
+ ki18n
+ kiconthemes
+ kio
+ kirigami
+ kirigami-addons
+ kitemmodels
+ qqc2-desktop-style
+ qtsvg
+ qtwayland
+ qtwebengine
+ sonnet))
+ (home-page "https://apps.kde.org/klevernotes/")
+ (synopsis "Note taking and management application")
+ (description
+ "KleverNotes is a note taking and management application. It uses
Markdown
+and allows you to preview your content.")
+ (license license:gpl3+)))
+
(define-public tellico
(package
(name "tellico")