1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 01:00:30 +02:00

gnu: libkomparediff2: Move to kde-sdk.scm.

* gnu/packages/kde.scm (libkomparediff2): Remove variable.
* gnu/packages/kde-sdk.scm (libkomparediff2): New variable.

Change-Id: I10b76f6673c54aca89dd8c551d585009cadfb4e0
This commit is contained in:
Sughosha
2025-10-01 22:03:56 +05:30
parent 237cf6a039
commit bafc0cab76
2 changed files with 31 additions and 31 deletions

View File

@@ -37,6 +37,37 @@
#:use-module (gnu packages qt)
#:use-module (gnu packages version-control))
(define-public libkomparediff2
(package
(name "libkomparediff2")
(version "24.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/release-service/" version
"/src/libkomparediff2-" version ".tar.xz"))
(sha256
(base32 "0zz7cyz2hpdzqfxr01yjf57r629h1lj3j129si69n1r0rpq2lbf2"))))
(native-inputs
(list extra-cmake-modules pkg-config))
(inputs
(list kcodecs
kconfig
kcoreaddons
ki18n
kio
kxmlgui
qtbase))
(build-system cmake-build-system)
(home-page "https://kde.org")
(synopsis "Library to compare files and strings, used in Kompare and KDevelop")
(description "Libkomparediff2 is a library to work with diffs and patches,
used in KDE development tools Kompare and KDevelop.")
;; GPL, some files are also licensed under LGPL or BSD, see COPYING in the
;; source archive
(license (list license:gpl2+ license:lgpl2.0+ license:bsd-3))))
(define-public kapptemplate
(package
(name "kapptemplate")

View File

@@ -740,37 +740,6 @@ accessibility clients such as screen readers.")
(inputs (modify-inputs (package-inputs libqaccessibilityclient)
(replace "qtbase" qtbase-5)))))
(define-public libkomparediff2
(package
(name "libkomparediff2")
(version "24.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/release-service/" version
"/src/libkomparediff2-" version ".tar.xz"))
(sha256
(base32 "0zz7cyz2hpdzqfxr01yjf57r629h1lj3j129si69n1r0rpq2lbf2"))))
(native-inputs
(list extra-cmake-modules pkg-config))
(inputs
(list kcodecs
kconfig
kcoreaddons
ki18n
kio
kxmlgui
qtbase))
(build-system cmake-build-system)
(home-page "https://kde.org")
(synopsis "Library to compare files and strings, used in Kompare and KDevelop")
(description "Libkomparediff2 is a library to work with diffs and patches,
used in KDE development tools Kompare and KDevelop.")
;; GPL, some files are also licensed under LGPL or BSD, see COPYING in the
;; source archive
(license (list license:gpl2+ license:lgpl2.0+ license:bsd-3))))
(define-public qca
(package
(name "qca")