[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/285: gnu: gnome-shell-extension-hide-app-icon: Fix installation.
From: |
guix-commits |
Subject: |
13/285: gnu: gnome-shell-extension-hide-app-icon: Fix installation. |
Date: |
Sun, 29 Dec 2019 20:43:51 -0500 (EST) |
kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.
commit b859d4f3b714f72acd06f74ac76bc0f73e244aeb
Author: Leo Prikler <address@hidden>
Date: Sun Dec 22 16:03:43 2019 +0100
gnu: gnome-shell-extension-hide-app-icon: Fix installation.
* gnu/packages/gnome-xyz.scm: (gnome-shell-extension-hide-app-icon):
[arguments]: Install in subdirectory. Adjust indentation.
Signed-off-by: Efraim Flashner <address@hidden>
---
gnu/packages/gnome-xyz.scm | 35 +++++++++++++++++++----------------
1 file changed, 19 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 4b5e07a..64fac5e 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -158,15 +158,16 @@ faster window switching.")
(name "gnome-shell-extension-hide-app-icon")
(version (git-version "2.7" revision commit))
(source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url
"https://github.com/michael-rapp/gnome-shell-extension-hide-app-icon.git")
- (commit commit)))
- (sha256
- (base32
- "1i28n4bz6wrhn07vpxkr6l1ljyn7g8frp5xrr11z3z32h2hxxcd6"))
- (file-name (git-file-name name version))))
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/michael-rapp"
+ "/gnome-shell-extension-hide-app-icon.git"))
+ (commit commit)))
+ (sha256
+ (base32
+ "1i28n4bz6wrhn07vpxkr6l1ljyn7g8frp5xrr11z3z32h2hxxcd6"))
+ (file-name (git-file-name name version))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no test target
@@ -178,10 +179,11 @@ faster window switching.")
(delete 'configure) ; no configure script
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (copy-recursively "address@hidden/"
- (string-append out
"/share/gnome-shell/extensions"))
- #t))))))
+ (let ((out (assoc-ref outputs "out"))
+ (pre "/share/gnome-shell/extensions/")
+ (dir "address@hidden"))
+ (copy-recursively dir (string-append out pre dir))
+ #t))))))
(native-inputs
`(("glib" ,glib "bin")
("intltool" ,intltool)))
@@ -190,10 +192,11 @@ faster window switching.")
(synopsis "Hide app icon from GNOME's panel")
(description "This extension allows to hide the icon and/or title of the
currently focused application in the top panel of the GNOME shell.")
- (home-page
"https://github.com/michael-rapp/gnome-shell-extension-hide-app-icon/")
+ (home-page
+ "https://github.com/michael-rapp/gnome-shell-extension-hide-app-icon/")
(license
- ;; README.md and LICENSE.txt disagree -- the former claims v3, the
- ;; latter v2. No mention of "or later" in either place or in the code.
+ ;; README.md and LICENSE.txt disagree -- the former claims v3, the
+ ;; latter v2. No mention of "or later" in either place or in the code.
(list license:gpl2
license:gpl3)))))
- branch wip-gnome3.34 updated (26ec7d6 -> 281bce1), guix-commits, 2019/12/29
- 05/285: gexp: Add system and target support to gexp->file., guix-commits, 2019/12/29
- 07/285: gnu: mumble: Actually modify qt-build-system., guix-commits, 2019/12/29
- 08/285: gnu: gspell: Build with gobject-introspection., guix-commits, 2019/12/29
- 11/285: gnu: cpupower: Fix library location., guix-commits, 2019/12/29
- 04/285: gnu: ktouch: Update to 19.08.3., guix-commits, 2019/12/29
- 06/285: gnu: git-annex: Update to 7.20191218., guix-commits, 2019/12/29
- 10/285: gnu: parallel: Update to 20191222., guix-commits, 2019/12/29
- 13/285: gnu: gnome-shell-extension-hide-app-icon: Fix installation.,
guix-commits <=
- 14/285: gnu: gnome-shell-extension-dash-to-dock: Depropagate glib:bin., guix-commits, 2019/12/29
- 15/285: gnu: gnome-shell-extensions: Depropagate glib:bin., guix-commits, 2019/12/29
- 12/285: gnu: guix-data-service: Update to 0.0.1-9.31110ac., guix-commits, 2019/12/29
- 25/285: gnu: ktouch: Use fixed qt-build-system., guix-commits, 2019/12/29
- 09/285: gnu: Add polari., guix-commits, 2019/12/29
- 23/285: gnu: kdevelop: Use fixed qt-build-system., guix-commits, 2019/12/29
- 16/285: bootloader: grub: Add firmware setup entry., guix-commits, 2019/12/29
- 18/285: gnu: nano: Update to 4.7., guix-commits, 2019/12/29
- 17/285: gnu: icecat: Fix linking with ffmpeg., guix-commits, 2019/12/29
- 19/285: build-system: qt: Actually use qt-build-system, not cmake-build-system., guix-commits, 2019/12/29