diff options
author | Thomas Danckaert <thomas.danckaert@gmail.com> | 2016-11-08 14:16:43 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-11-09 21:24:44 +0100 |
commit | 8bb115e0c6673143f174e88df43594077979945b (patch) | |
tree | 266992b84de787ab3e18c1f14da260749321259d /gnu/packages | |
parent | 5a16e1c04ec5cd89651b8327dacd764c4a7b2836 (diff) | |
download | guix-8bb115e0c6673143f174e88df43594077979945b.tar guix-8bb115e0c6673143f174e88df43594077979945b.tar.gz |
gnu: Add kdevelop-pg-qt.
* gnu/packages/kde.scm (kdevelop-pg-qt): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 47ca002e4d..82e7ed2cc7 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -28,6 +28,29 @@ #:use-module (gnu packages tls) #:use-module (gnu packages qt)) +(define-public kdevelop-pg-qt + (package + (name "kdevelop-pg-qt") + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/KDE/kdevelop-pg-qt/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1av8plqz7hyhrd07avnmn6ryslqlarmxn0pw7swzvb6ddiqp59j4")))) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("qtbase" ,qtbase))) + (build-system cmake-build-system) + (home-page "https://kde.org") + (synopsis "Parser generator library for KDevplatform") + (description "KDevelop-PG-Qt is the parser generator used in KDevplatform +for some KDevelop language plugins (Ruby, PHP, CSS...).") + (license license:lgpl2.0+))) + (define-public libkomparediff2 (package (name "libkomparediff2") |