guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/25: gnu: Add libkeduvocdocument.


From: guix-commits
Subject: 07/25: gnu: Add libkeduvocdocument.
Date: Sun, 31 Jan 2021 09:04:30 -0500 (EST)

htgoebel pushed a commit to branch wip-kde-education
in repository guix.

commit a3b28a85e8a8f0cf22e2474ef7f405ffc52c7e5b
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 18:23:38 2019 +0100

    gnu: Add libkeduvocdocument.
    
    * gnu/packages/education.scm (libkeduvocdocument): New variable.
---
 gnu/packages/education.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 25898a0..d284319 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1298,3 +1298,36 @@ machine, and more.")
     (description "Commandline client for exercism.io, a free service providing
 mentored learning for programming languages.")
     (license license:expat)))
+
+(define-public libkeduvocdocument
+  (package
+    (name "libkeduvocdocument")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/libkeduvocdocument-" version ".tar.xz"))
+       (sha256
+        (base32 "0kqnhaabfi91clqg7nlnjcybl5ca0p3ysn5zlwhxz1fcjxm83g4w"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)))
+    (inputs
+     `(("karchive" ,karchive)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("qtbase" ,qtbase)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'test-setup
+           (lambda _
+             (setenv "HOME" "/tmp")
+             #t)))))
+    (home-page "https://invent.kde.org/education/libkeduvocdocument";)
+    (synopsis "Library to parse, convert, and manipulate KVTML files")
+    (description "Library to parse, convert, and manipulate KVTML files and
+older formats including kvtml1, csv, etc.")
+    (license ;; LGPL for libraries, FDL for documentation
+     (list license:gpl2+ license:fdl1.2+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]