diff options
| author | Ghislain Vaillant <ghislain.vaillant@inria.fr> | 2025-12-04 17:18:45 +0100 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2025-12-14 12:17:47 +0530 |
| commit | 8023f009f2025fab09efad99c0b962232f874ca2 (patch) | |
| tree | f8057ff78e54831598b86f2281f9dd33e0607d3f /gnu | |
| parent | f9548eef30f77602a07c3e48d7edfb03b4ef9245 (diff) | |
gnu: Add klevernotes.
* gnu/packages/kde-office.scm (klevernotes): New variable.
Change-Id: Idcfe5ef2fa15ec972f7488a77331f94010593836
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/kde-office.scm | 48 |
1 files changed, 47 insertions, 1 deletions
diff --git a/gnu/packages/kde-office.scm b/gnu/packages/kde-office.scm index 6ca7be6bdb0..496ca865bd0 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 <sughosha@disroot.org> ;;; Copyright © 2025 Junker <dk@junkeria.club> +;;; Copyright © 2025 Ghislain Vaillant <ghislain.vaillant@inria.fr> ;;; ;;; 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") |
