diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-08-06 17:26:01 -0400 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-08-19 19:04:00 +0200 |
commit | 5dbd5889bc453bff734f0ef0dd0fd63a81c62702 (patch) | |
tree | 413104fa6821c25a7199cd28ac4ba89e26fe404e | |
parent | 90cab4c5613d55c11be308b10c40af5142cc5410 (diff) | |
download | guix-5dbd5889bc453bff734f0ef0dd0fd63a81c62702.tar.gz |
gnu: gnome-shell-extensions: Update package definition.
* gnu/packages/gnome.scm (gnome-shell-extensions) [version]: Update to 3.36.2. [source]<origin>[sha256]: Modify base32. [arguments]<#:glib-or-gtk?>: New argument. <#:configure-flags>[-Dclassic_mode]: New flag. [inputs]: Add mozjs60 and sassc. [description]: Modify. [license]: Change from gpl3+ to gpl2+. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
-rw-r--r-- | gnu/packages/gnome.scm | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 41ff92d69e..e51920793d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10996,29 +10996,37 @@ GNOME Shell appearance and extension, etc.") (define-public gnome-shell-extensions (package (name "gnome-shell-extensions") - (version "3.34.2") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "1f5l35l3kdkzrv49xmg1sh11vwmgjbg7hx3gb91i39bfl1snxqd1")))) + (version "3.36.2") + (source + (origin + (method url-fetch) + (uri + (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "0gq0z0k02b5cfaqrikk2hzbqzjkb6qwcanaqi2jh7nswa7g050lp")))) (build-system meson-build-system) (arguments - '(#:configure-flags '("-Dextension_set=all"))) + `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + #:configure-flags + (list + "-Dextension_set=all" + "-Dclassic_mode=true"))) (native-inputs `(("glib:bin" ,glib "bin") ("intltool" ,intltool) ("pkg-config" ,pkg-config))) + (inputs + `(("js60" ,mozjs-60) + ("sassc" ,sassc))) (propagated-inputs `(("glib" ,glib))) (synopsis "Extensions for GNOME Shell") - (description "GNOME Shell extensions modify and extend GNOME Shell -functionality and behavior.") + (description "GNOME-Shell-Extensions is a collection of extensions providing +additional and optional functionality to GNOME Shell.") (home-page "https://extensions.gnome.org/") - (license license:gpl3+))) + (license license:gpl2+))) (define-public arc-theme (package |