mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 05:59:20 -05:00
gnu: gnome-shell-extension-clipboard-indicator: Update to 47.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-clipboard-indicator): Update to 47. [arguments]: Convert to a list of G-Expressions. Change-Id: Ie982a1820dab1f01b2e8198cd6914d1e676865ad Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
a7ff2e20e7
commit
efd3dc654a
1 changed files with 12 additions and 11 deletions
|
@ -603,7 +603,7 @@ (define-public gnome-shell-extension-appindicator
|
||||||
(define-public gnome-shell-extension-clipboard-indicator
|
(define-public gnome-shell-extension-clipboard-indicator
|
||||||
(package
|
(package
|
||||||
(name "gnome-shell-extension-clipboard-indicator")
|
(name "gnome-shell-extension-clipboard-indicator")
|
||||||
(version "42")
|
(version "47")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -615,7 +615,7 @@ (define-public gnome-shell-extension-clipboard-indicator
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wf2k33pbwjdf8i4y3aw32fgvjbh751qh7504lwhnl02rcq5dc88"))
|
"00v0v454y6hblzsx06aaysxbs6aky89vnkf7ydzxrddns24c2wix"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Remove pre-compiled settings schemas and translations from
|
;; Remove pre-compiled settings schemas and translations from
|
||||||
|
@ -628,15 +628,16 @@ (define-public gnome-shell-extension-clipboard-indicator
|
||||||
(find-files "locale" "\\.mo$"))))))
|
(find-files "locale" "\\.mo$"))))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:install-plan
|
(list
|
||||||
'(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com"
|
#:install-plan
|
||||||
#:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$")))
|
#~'(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com"
|
||||||
#:phases
|
#:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$")))
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(add-before 'install 'compile-schemas
|
#~(modify-phases %standard-phases
|
||||||
(lambda _
|
(add-before 'install 'compile-schemas
|
||||||
(with-directory-excursion "schemas"
|
(lambda _
|
||||||
(invoke "glib-compile-schemas" ".")))))))
|
(with-directory-excursion "schemas"
|
||||||
|
(invoke "glib-compile-schemas" ".")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") gettext-minimal))
|
(list `(,glib "bin") gettext-minimal))
|
||||||
(home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator")
|
(home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator")
|
||||||
|
|
Loading…
Reference in a new issue