From: elaexuotee--- via "Development of GNU Guix and the GNU System distribution." <guix-devel@gnu.org>
To: Maxime Devos <maximedevos@telenet.be>
Cc: guix-devel@gnu.org, "Ludovic Courtès" <ludovic.courtes@inria.fr>
Subject: Re: Installing a wrapper guile script in <out>/bin
Date: Wed, 03 Feb 2021 20:04:19 +0900 [thread overview]
Message-ID: <3TT5JRKHCZ2E4.2VYCP49OAJARA@wilsonb.com> (raw)
In-Reply-To: <6d41cb49f87561620e46f5e8a25946f2fbb927ab.camel@telenet.be>
Maxime Devos <maximedevos@telenet.be> wrote:
> Let's presume the binary is called $X.
>
> What I would do: add a build phase after the "install" phase that renames
> <out>/bin/$X to <out>/bin/.$X-real using the rename-file procedure. Create
> your wrapper script at <out>/bin/.$X-real with call-with-output-file, some
> I/O procedures and chmod (to make the wrapper script executable).
>
> I hope that helps, Maxime.
Thanks for the pointers.
The script contents are not what I'm confused about. I don't know how to turn
my gexp script into a file under <out>/bin/. This is conceptually what I want:
(package
(name "foo")
...
(arguments
`(...
#:phases
(modify-phases %standard-phases
...
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))
(wrapper-script #~(...)))
... ; Do normal install stuff
(copy-file wrapper-script (string-append out "/bin/foo"))
... ; Finish install stuff
)))))))
Of course `copy-file` doesn't work here because `wrapper-script` is a gexp not
a file. What code do I replace this with?
I am vaguely aware things like `build-expression->derivation` to reify a gexp
into a derivation; however, I'm not sure what to do with the derivation object
in this case or if this is even on the right track.
Cheers!
next prev parent reply other threads:[~2021-02-03 11:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-01 11:28 Installing a wrapper guile script in <out>/bin elaexuotee
2021-02-01 16:04 ` Ludovic Courtès
2021-02-03 5:50 ` elaexuotee
2021-02-03 10:00 ` Maxime Devos
2021-02-03 11:04 ` elaexuotee--- via Development of GNU Guix and the GNU System distribution. [this message]
2021-02-03 12:12 ` Maxime Devos
2021-02-03 19:17 ` elaexuotee
2021-02-04 8:56 ` Maxime Devos
-- strict thread matches above, loose matches on Subject: below --
2021-02-01 12:16 Leo Prikler
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3TT5JRKHCZ2E4.2VYCP49OAJARA@wilsonb.com \
--to=guix-devel@gnu.org \
--cc=elaexuotee@wilsonb.com \
--cc=ludovic.courtes@inria.fr \
--cc=maximedevos@telenet.be \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.