guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: passff-host: Refactor builder.


From: guix-commits
Subject: branch master updated: gnu: passff-host: Refactor builder.
Date: Sat, 28 Oct 2023 10:17:12 -0400

This is an automated email from the git hooks/post-receive script.

snape pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0525a39c21 gnu: passff-host: Refactor builder.
0525a39c21 is described below

commit 0525a39c215e4a4d1a23e5e49d2dd2896ae8baff
Author: Clément Lassieur <clement@lassieur.org>
AuthorDate: Sat Oct 28 16:12:16 2023 +0200

    gnu: passff-host: Refactor builder.
    
    * gnu/packages/browser-extensions.scm (passff-host)[arguments]: Refactor
    builder.
    
    Change-Id: I42cb5e6b4808a8b2025d20654c57392f79c01a5c
---
 gnu/packages/browser-extensions.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/browser-extensions.scm 
b/gnu/packages/browser-extensions.scm
index 5b34972499..fba81c016d 100644
--- a/gnu/packages/browser-extensions.scm
+++ b/gnu/packages/browser-extensions.scm
@@ -174,13 +174,12 @@ ungoogled-chromium.")
       #:builder
       #~(begin
           (use-modules (guix build utils))
-          (setenv "PATH" (string-join
-                          (list #$(file-append coreutils "/bin")
-                                #$(file-append grep "/bin")
-                                #$(file-append password-store "/bin")
-                                #$(file-append python "/bin")
-                                #$(file-append sed "/bin")
-                                #$(file-append which "/bin")) ":"))
+          (setenv "PATH" (string-join '(#$coreutils
+                                        #$grep
+                                        #$password-store
+                                        #$python
+                                        #$sed
+                                        #$which) "/bin:" 'suffix))
           (copy-recursively #$source ".")
           (substitute* "src/install_host_app.sh"
             (("#!/usr/bin/env sh") #$(file-append bash-minimal "/bin/sh"))



reply via email to

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