2015-02-28 21:08:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
|
|
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
2016-02-14 14:46:30 +01:00
|
|
|
;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
2016-06-16 18:10:12 +02:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
Correct name and Email for ng0.
* .mailmap: Correct name and Email for ng0.
* Makefile.am, doc/guix.texi, etc/completion/fish/guix.fish
gnu/packages/accessibility.scm, gnu/packages/admin.scm,
gnu/packages/audio.scm, gnu/packages/autotools.scm,
gnu/packages/cdrom.scm, gnu/packages/check.scm,
gnu/packages/cinnamon.scm, gnu/packages/compression.scm,
gnu/packages/crypto.scm, gnu/packages/databases.scm,
gnu/packages/django.scm, gnu/packages/dns.scm,
gnu/packages/emacs.scm, gnu/packages/enlightenment.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm,
gnu/packages/forth.scm, gnu/packages/fvwm.scm,
gnu/packages/games.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm,
gnu/packages/guile.scm, gnu/packages/haskell-check.scm,
gnu/packages/haskell-crypto.scm, gnu/packages/haskell.scm,
gnu/packages/image-viewers.scm, gnu/packages/image.scm,
gnu/packages/irc.scm, gnu/packages/language.scm,
gnu/packages/libcanberra.scm, gnu/packages/linux.scm,
gnu/packages/lisp.scm, gnu/packages/lolcode.scm,
gnu/packages/lxde.scm, gnu/packages/lxqt.scm,
gnu/packages/mail.scm, gnu/packages/markup.scm,
gnu/packages/mate.scm, gnu/packages/maths.scm,
gnu/packages/mc.scm, gnu/packages/messaging.scm,
gnu/packages/music.scm, gnu/packages/ncurses.scm,
gnu/packages/networking.scm, gnu/packages/nickle.scm,
gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl-check.scm, gnu/packages/perl.scm,
gnu/packages/python-crypto.scm, gnu/packages/python-web.scm,
gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/ruby.scm, gnu/packages/rust.scm,
gnu/packages/scheme.scm, gnu/packages/serialization.scm,
gnu/packages/shells.scm, gnu/packages/ssh.scm,
gnu/packages/suckless.scm, gnu/packages/tbb.scm,
gnu/packages/telephony.scm, gnu/packages/text-editors.scm,
gnu/packages/textutils.scm, gnu/packages/time.scm,
gnu/packages/tls.scm, gnu/packages/tor.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vim.scm, gnu/packages/web.scm,
gnu/packages/wm.scm, gnu/packages/xdisorg.scm,
gnu/packages/xfce.scm, gnu/packages/xml.scm,
gnu/packages/xorg.scm, gnu/services/certbot.scm,
gnu/services/desktop.scm, gnu/services/version-control.scm,
gnu/services/web.scm, guix/import/hackage.scm,
guix/licenses.scm: Likewise.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
2018-03-20 16:39:45 +01:00
|
|
|
;;; Copyright © 2017 Nils Gillmann <ng0@n0.is>
|
2018-06-03 22:41:59 +02:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2015-02-28 21:08:50 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages lxqt)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module ((guix licenses) #:select (lgpl2.1+))
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system cmake)
|
2015-07-27 22:54:58 +02:00
|
|
|
#:use-module (gnu packages)
|
2017-09-24 17:08:11 +02:00
|
|
|
#:use-module (gnu packages glib)
|
2015-07-24 23:05:02 +02:00
|
|
|
#:use-module (gnu packages kde-frameworks)
|
2015-02-28 21:08:50 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages qt))
|
|
|
|
|
|
|
|
(define-public libqtxdg
|
|
|
|
(package
|
|
|
|
(name "libqtxdg")
|
2015-07-27 22:35:44 +02:00
|
|
|
(version "1.2.0")
|
2015-02-28 21:08:50 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
2016-06-16 18:10:12 +02:00
|
|
|
(string-append "https://github.com/lxde/libqtxdg/releases/"
|
|
|
|
"download/" version "/" name "-" version ".tar.xz"))
|
2015-02-28 21:08:50 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2015-07-27 22:35:44 +02:00
|
|
|
"1ncqs0lcll5nx69hxfg33m3jfkryjqrjhr2kdci0b8pyaqdv1jc8"))))
|
2015-02-28 21:08:50 +01:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
2015-07-27 22:35:44 +02:00
|
|
|
`(#:tests? #f ; test fails with message "Exception"
|
|
|
|
#:configure-flags '("-DBUILD_TESTS=ON")))
|
2015-02-28 21:08:50 +01:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2016-06-17 08:14:12 +02:00
|
|
|
(propagated-inputs
|
2016-06-16 18:11:16 +02:00
|
|
|
`(("qtbase" ,qtbase))) ; according to Qt5Xdg.pc
|
2015-02-28 21:08:50 +01:00
|
|
|
(home-page "https://github.com/lxde/libqtxdg")
|
|
|
|
(synopsis "Qt implementation of freedesktop.org xdg specifications")
|
|
|
|
(description "Libqtxdg implements the freedesktop.org xdg specifications
|
|
|
|
in Qt.")
|
|
|
|
(license lgpl2.1+)))
|
2015-07-24 23:05:02 +02:00
|
|
|
|
|
|
|
(define-public liblxqt
|
|
|
|
(package
|
|
|
|
(name "liblxqt")
|
|
|
|
(version "0.9.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
2016-06-16 18:10:12 +02:00
|
|
|
(string-append "https://github.com/lxde/" name
|
|
|
|
"/archive/" version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-07-27 22:54:58 +02:00
|
|
|
(sha256
|
2015-07-24 23:05:02 +02:00
|
|
|
(base32
|
2016-06-16 18:10:12 +02:00
|
|
|
"0mbl3qc0yfgfsndqrw8vg8k5irsy0pg2wrad8nwv0aphphd4n7rg"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "liblxqt-include.patch"))))
|
2015-07-24 23:05:02 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f))
|
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("kwindowsystem" ,kwindowsystem)
|
2016-06-16 18:24:28 +02:00
|
|
|
("libqtxdg" ,libqtxdg)
|
|
|
|
("qtbase" ,qtbase)
|
|
|
|
("qttools" ,qttools)
|
|
|
|
("qtx11extras" ,qtx11extras)))
|
2015-07-24 23:05:02 +02:00
|
|
|
(home-page "http://lxqt.org/")
|
|
|
|
(synopsis "Core utility library for all LXQt components")
|
|
|
|
(description "liblxqt provides the basic libraries shared by the
|
2015-10-03 22:41:59 +02:00
|
|
|
components of the LXQt desktop environment.")
|
2015-07-24 23:05:02 +02:00
|
|
|
(license lgpl2.1+)))
|
2015-10-03 19:45:06 +02:00
|
|
|
|
2015-10-03 21:20:41 +02:00
|
|
|
(define-public lxqt-session
|
|
|
|
(package
|
|
|
|
(name "lxqt-session")
|
|
|
|
(version "0.9.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
2016-06-16 18:10:12 +02:00
|
|
|
(string-append "https://github.com/lxde/" name
|
|
|
|
"/archive/" version ".tar.gz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-10-03 21:20:41 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-06-16 18:10:12 +02:00
|
|
|
"1sdwcfrfqkg7ibrsncs1skdap9n8wm4rg6n9d0fgdz2q4d45h75a"))))
|
2015-10-03 21:20:41 +02:00
|
|
|
(build-system cmake-build-system)
|
2016-06-16 19:24:16 +02:00
|
|
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
2015-10-03 21:20:41 +02:00
|
|
|
(inputs
|
|
|
|
`(("kwindowsystem" ,kwindowsystem)
|
|
|
|
("liblxqt" ,liblxqt)
|
2016-06-16 19:24:16 +02:00
|
|
|
("libqtxdg" ,libqtxdg)
|
|
|
|
("qtbase" ,qtbase)
|
|
|
|
("qttools" ,qttools)
|
|
|
|
("qtx11extras" ,qtx11extras)))
|
2015-10-03 21:20:41 +02:00
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no check target
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'fix-installation-paths
|
|
|
|
(lambda _
|
|
|
|
;; The variable LXQT_TRANSLATIONS_DIR is set in
|
|
|
|
;; liblxqt-0.9.0/share/cmake/lxqt/lxqt-config.cmake
|
|
|
|
;; to the liblxqt installation directory, followed by
|
|
|
|
;; "/share/lxqt/translations".
|
|
|
|
;; We need to have it point to the current installation
|
|
|
|
;; directory instead.
|
|
|
|
(substitute* '("lxqt-session/CMakeLists.txt"
|
|
|
|
"lxqt-config-session/CMakeLists.txt")
|
|
|
|
(("\\$\\{LXQT_TRANSLATIONS_DIR\\}")
|
|
|
|
"${CMAKE_INSTALL_PREFIX}/share/lxqt/translations")))))))
|
|
|
|
(home-page "http://lxqt.org/")
|
|
|
|
(synopsis "Session manager for LXQt")
|
|
|
|
(description "lxqt-session provides the standard session manager
|
|
|
|
for the LXQt desktop environment.")
|
|
|
|
(license lgpl2.1+)))
|
2017-09-24 17:08:11 +02:00
|
|
|
|
|
|
|
(define-public lxqt-build-tools
|
|
|
|
(package
|
|
|
|
(name "lxqt-build-tools")
|
2018-06-03 22:41:59 +02:00
|
|
|
(version "0.5.0")
|
2017-09-24 17:08:11 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/lxde/lxqt-build-tools/releases/"
|
|
|
|
"download/" version "/" name "-" version ".tar.xz"))
|
|
|
|
(file-name (string-append name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-06-03 22:41:59 +02:00
|
|
|
"13b5x26p6ycnwzlgg1cgvlc88wjrjmlb3snrrmzh0xgh9h6hhvd6"))))
|
2017-09-24 17:08:11 +02:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
2018-06-03 22:41:59 +02:00
|
|
|
`(#:tests? #f)) ; no tests
|
2017-09-24 17:08:11 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("glib" ,glib)))
|
|
|
|
(inputs
|
|
|
|
`(("qtbase" ,qtbase)))
|
|
|
|
(synopsis "LXQt Build tools")
|
|
|
|
(description
|
|
|
|
"Lxqt-build-tools is providing several tools needed to build LXQt
|
|
|
|
itself as well as other components maintained by the LXQt project.")
|
|
|
|
(home-page "http://lxqt.org")
|
|
|
|
(license lgpl2.1+)))
|