gnu: passff-host: Refactor builder.
* gnu/packages/browser-extensions.scm (passff-host)[arguments]: Refactor builder. Change-Id: I42cb5e6b4808a8b2025d20654c57392f79c01a5c
This commit is contained in:
parent
c3cf04d05b
commit
0525a39c21
1 changed files with 6 additions and 7 deletions
|
@ -174,13 +174,12 @@ ungoogled-chromium.")
|
||||||
#:builder
|
#:builder
|
||||||
#~(begin
|
#~(begin
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(setenv "PATH" (string-join
|
(setenv "PATH" (string-join '(#$coreutils
|
||||||
(list #$(file-append coreutils "/bin")
|
#$grep
|
||||||
#$(file-append grep "/bin")
|
#$password-store
|
||||||
#$(file-append password-store "/bin")
|
#$python
|
||||||
#$(file-append python "/bin")
|
#$sed
|
||||||
#$(file-append sed "/bin")
|
#$which) "/bin:" 'suffix))
|
||||||
#$(file-append which "/bin")) ":"))
|
|
||||||
(copy-recursively #$source ".")
|
(copy-recursively #$source ".")
|
||||||
(substitute* "src/install_host_app.sh"
|
(substitute* "src/install_host_app.sh"
|
||||||
(("#!/usr/bin/env sh") #$(file-append bash-minimal "/bin/sh"))
|
(("#!/usr/bin/env sh") #$(file-append bash-minimal "/bin/sh"))
|
||||||
|
|
Reference in a new issue