guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

296/402: gnu: gnome-shell-extensions: Update package definition.


From: guix-commits
Subject: 296/402: gnu: gnome-shell-extensions: Update package definition.
Date: Tue, 18 Aug 2020 16:48:07 -0400 (EDT)

dannym pushed a commit to branch wip-desktop
in repository guix.

commit e0172401f3a5de7c08773653505baabac55dee13
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Thu Aug 6 17:26:01 2020 -0400

    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>
---
 gnu/packages/gnome.scm | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 0dbecb6..dffc8a9 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11048,29 +11048,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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]