mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: cinnamon: Update to 5.6.2.
* gnu/packages/cinnamon.scm (cinnamon-desktop): Update to 5.4.2. [arguments]<#:configure-flags>: Enable alsa-support. [inputs]: Remove PYTHON-2, remove GOBJECT-INTROSPECTION, add LIBEXT, ALSA-LIB. [native-inputs]: Remove gnu-build-system related packages, add GOBJECT-INTROSPECTION. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
f07d5c38c5
commit
23f3f85349
1 changed files with 17 additions and 13 deletions
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2017 Nikita <nikita@n0.is>
|
;;; Copyright © 2017 Nikita <nikita@n0.is>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2022 florhizome <florhizome@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,6 +25,7 @@ (define-module (gnu packages cinnamon)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
|
#:use-module (guix build utils)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system meson)
|
#:use-module (guix build-system meson)
|
||||||
|
@ -35,7 +37,9 @@ (define-module (gnu packages cinnamon)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages photo)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
@ -121,7 +125,7 @@ (define-public libxapp
|
||||||
(define-public cinnamon-desktop
|
(define-public cinnamon-desktop
|
||||||
(package
|
(package
|
||||||
(name "cinnamon-desktop")
|
(name "cinnamon-desktop")
|
||||||
(version "3.4.2")
|
(version "5.6.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -130,27 +134,27 @@ (define-public cinnamon-desktop
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"18mjy80ly9361npjhxpm3n0pkmrwviaqr2kixjb7hyxa6kzzh5xw"))))
|
"0rnk0vmpjiz8pgn5y8zizr91ilwzfh9w7cmfsjpqg3h5wkpxz22z"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
;; TODO: package 'libgsystem'.
|
(arguments
|
||||||
|
(list
|
||||||
|
#:glib-or-gtk? #true
|
||||||
|
#:configure-flags #~(list "-Dalsa=true")))
|
||||||
(inputs
|
(inputs
|
||||||
(list accountsservice
|
(list accountsservice
|
||||||
gtk+
|
alsa-lib
|
||||||
glib
|
glib
|
||||||
gobject-introspection
|
|
||||||
gnome-common
|
gnome-common
|
||||||
|
gtk+
|
||||||
libxkbfile
|
libxkbfile
|
||||||
libxrandr
|
libxrandr
|
||||||
python-2
|
libxext
|
||||||
pulseaudio
|
pulseaudio
|
||||||
xkeyboard-config))
|
xkeyboard-config))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf
|
(list gettext-minimal
|
||||||
automake
|
`(,glib "bin") ;glib-gettextize
|
||||||
gettext-minimal
|
gobject-introspection
|
||||||
`(,glib "bin") ; glib-gettextize
|
|
||||||
intltool
|
|
||||||
libtool
|
|
||||||
pkg-config))
|
pkg-config))
|
||||||
(home-page "https://github.com/linuxmint/cinnamon-desktop/")
|
(home-page "https://github.com/linuxmint/cinnamon-desktop/")
|
||||||
(synopsis "Library for the Cinnamon Desktop")
|
(synopsis "Library for the Cinnamon Desktop")
|
||||||
|
|
Loading…
Reference in a new issue