[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/13: gnu: xmonad-next: Change #:phases to gexp.
From: |
guix-commits |
Subject: |
01/13: gnu: xmonad-next: Change #:phases to gexp. |
Date: |
Tue, 5 Apr 2022 14:43:08 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 2a70e7922c7c5f5372e0c98661d4109027307c15
Author: Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
AuthorDate: Fri Apr 1 09:57:58 2022 +0200
gnu: xmonad-next: Change #:phases to gexp.
* gnu/packages/wm.scm (xmonad-next)[arguments]: Use #$output, #$name
and #$synopsis instead of %output, name and synopsis.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/wm.scm | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 3de760d7a6..036665f7f0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -51,6 +51,7 @@
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Gabriel Wicki <gabriel@erlikon.ch>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -758,22 +759,21 @@ desktop environment.")
(inputs (list ghc-data-default-class ghc-setlocale ghc-x11))
(native-inputs (list ghc-quickcheck ghc-quickcheck-classes))
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after
- 'install 'install-xsession
- (lambda _
- (let* ((xsessions (string-append %output "/share/xsessions")))
- (mkdir-p xsessions)
- (call-with-output-file
- (string-append xsessions "/xmonad.desktop")
- (lambda (port)
- (format port "~
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-xsession
+ (lambda _
+ (let ((xsessions (string-append #$output
"/share/xsessions")))
+ (mkdir-p xsessions)
+ (call-with-output-file (string-append xsessions
+ "/xmonad.desktop")
+ (lambda (port)
+ (format port "~
[Desktop Entry]~@
Name=~a~@
Comment=~a~@
Exec=~a/bin/xmonad~@
- Type=Application~%" ,name ,synopsis %output)))))))))
+ Type=Application~%" #$name #$synopsis #$output)))))))))
(home-page "https://xmonad.org")
(description
"Xmonad is a tiling window manager for X. Windows are arranged
- branch master updated (66177c2b87 -> e777c3e34c), guix-commits, 2022/04/05
- 03/13: doc: Update the sample yggdrasil-private.conf., guix-commits, 2022/04/05
- 06/13: gnu: python-dotenv: Update to 0.20.0., guix-commits, 2022/04/05
- 08/13: gnu: python-w3lib: Fix build., guix-commits, 2022/04/05
- 02/13: gnu: curlie: Update to 1.6.9, guix-commits, 2022/04/05
- 01/13: gnu: xmonad-next: Change #:phases to gexp.,
guix-commits <=
- 04/13: gnu: celluloid: Update to 0.23., guix-commits, 2022/04/05
- 05/13: gnu: linux: Allow kconfig options to be strings, guix-commits, 2022/04/05
- 07/13: gnu: python-gst: Fix the concatenation of install path., guix-commits, 2022/04/05
- 09/13: gnu: pantheon-calculator: Update to 1.7.2., guix-commits, 2022/04/05
- 10/13: gnu: phodav: Use libsoup 2 instead of libsoup 3., guix-commits, 2022/04/05
- 12/13: services: messaging: Fix two copy-paste mistakes; avoid warnings., guix-commits, 2022/04/05
- 11/13: gnu: plocate: Build with "--sharedstatedir=/var"., guix-commits, 2022/04/05
- 13/13: gnu: l2md: Update to 9db252bc., guix-commits, 2022/04/05