[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: gammastep: Improve package style.
From: |
guix-commits |
Subject: |
06/06: gnu: gammastep: Improve package style. |
Date: |
Tue, 13 Sep 2022 17:08:21 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit ebbf77bf49d4ae80c6d216d949dfd1826dfd3ec4
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Sep 13 23:05:18 2022 +0200
gnu: gammastep: Improve package style.
* gnu/packages/xdisorg.scm (gammastep)[arguments]: Use G-expressions.
---
gnu/packages/xdisorg.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 0ec3b81df3..c017085353 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -1593,17 +1593,17 @@ to an arbitrary balanced color.")
(base32 "1rcciccnwhxh97wlr9gcirdxv33za369jsrgrfzcp3042824pm8i"))))
(build-system gnu-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-python-and-typelib
- (lambda* (#:key outputs #:allow-other-keys)
- ;; Gammastep GUI needs Typelib files from GTK and access
- ;; to Python libraries.
- (wrap-program (string-append (assoc-ref outputs "out")
- "/bin/gammastep-indicator")
- `("PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
- `("GI_TYPELIB_PATH" ":" prefix
- (,(getenv "GI_TYPELIB_PATH")))))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'wrap-python-and-typelib
+ (lambda _
+ ;; Gammastep GUI needs Typelib files from GTK and access to
+ ;; Python libraries.
+ (wrap-program (string-append #$output "/bin/gammastep-indicator")
+ `("PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
+ `("GI_TYPELIB_PATH" ":" prefix
+ (,(getenv "GI_TYPELIB_PATH")))))))))
(native-inputs
(list autoconf
automake
- branch master updated (a7af25ad31 -> ebbf77bf49), guix-commits, 2022/09/13
- 04/06: gnu: hedgewars: Improve package style., guix-commits, 2022/09/13
- 03/06: gnu: hedgewars: Update to 1.0.2., guix-commits, 2022/09/13
- 06/06: gnu: gammastep: Improve package style.,
guix-commits <=
- 02/06: gnu: emacs-treemacs: Update package style., guix-commits, 2022/09/13
- 05/06: gnu: gammastep: Update to 2.0.9., guix-commits, 2022/09/13
- 01/06: gnu: emacs-treemacs: Update to 3.0., guix-commits, 2022/09/13