gnu: gnome-shell-extension-dash-to-panel: Update to 56.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): Update to 56. [arguments]: Convert to list of G-Expressions. [native-inputs]: Add `(,glib "bin"). [propagated-inputs]: Remove `(,glib "bin"). Change-Id: I24a83766b750feb1004bbaf2f5badc9e21f1c30e Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
47cb05757d
commit
369b5274d9
1 changed files with 16 additions and 14 deletions
|
@ -953,7 +953,7 @@ certain elements or change animation speeds.")
|
||||||
(define-public gnome-shell-extension-dash-to-panel
|
(define-public gnome-shell-extension-dash-to-panel
|
||||||
(package
|
(package
|
||||||
(name "gnome-shell-extension-dash-to-panel")
|
(name "gnome-shell-extension-dash-to-panel")
|
||||||
(version "56")
|
(version "56") ;Compatible with GNOME 44
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -965,22 +965,24 @@ certain elements or change animation speeds.")
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
(list
|
||||||
#:make-flags (list (string-append "INSTALLBASE="
|
#:tests? #f
|
||||||
(assoc-ref %outputs "out")
|
#:make-flags #~(list (string-append "INSTALLBASE="
|
||||||
|
#$output
|
||||||
"/share/gnome-shell/extensions")
|
"/share/gnome-shell/extensions")
|
||||||
(string-append "VERSION="
|
(string-append "VERSION="
|
||||||
,(package-version
|
#$version))
|
||||||
gnome-shell-extension-dash-to-panel)))
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'bootstrap)
|
(delete 'bootstrap)
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list intltool pkg-config))
|
(list
|
||||||
|
`(,glib "bin")
|
||||||
|
intltool
|
||||||
|
pkg-config))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list glib
|
(list glib))
|
||||||
`(,glib "bin")))
|
|
||||||
(synopsis "Icon taskbar for GNOME Shell")
|
(synopsis "Icon taskbar for GNOME Shell")
|
||||||
(description "This extension moves the dash into the gnome main
|
(description "This extension moves the dash into the gnome main
|
||||||
panel so that the application launchers and system tray are combined
|
panel so that the application launchers and system tray are combined
|
||||||
|
|
Reference in a new issue