[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Racket (require gregor)
From: |
yasu |
Subject: |
Re: Racket (require gregor) |
Date: |
Sat, 12 Dec 2020 17:52:02 +0900 |
User-agent: |
Evolution 3.34.2 |
Thank you Tobias, it worked!
I ended up modifying below section as shown:
~/.racket/7.9/pkgs/tzinfo/tzinfo/private$ nvim zoneinfo.rkt
(define default-zoneinfo-search-path
(list
(path->string
(build-path
(string-replace
(with-output-to-string
(lambda ()
(system "guix build tzdata"))) "\n" "" )
"share" "zoneinfo"))
"/usr/share/zoneinfo"
"/usr/share/lib/zoneinfo"
"/etc/zoneinfo"))
But surely this is not the way to do it in Guix...
I wonder if there is a proper Guix integration for Racket's raco
package manager?
-Yasu
On Fri, 2020-12-11 at 15:24 +0100, Tobias Geerinckx-Rice wrote:
> Hi Yasu,
>
> Yasuaki Kudo 写道:
> > Damn HTML doesn't work😅
>
> Yes. Please don't send HTML e-mail to mailing lists: most people
> don't like receiving it (e.g., sending me HTML mail is guaranteed
> to land you in my Spam bin) & you never know how your mail will
> appear to others.
>
> > (Resending, my html email keeps failing... Is this mailing list
> > automatically converting HTML messages to Plain Text or
> > something??)
>
> Yes. We have enabled both ‘convert text/html parts to plain text’
> and ‘collapse multipart/alternative to its first part content’.
>
> > If there are users of
> > Racket..., would you please try the same and see if it works for
> > you?
>
> I get the same error, with the tzdata Racket (and Guix, just in
> case) package install.
>
> If I manually add $(guix build tzdata)/share/zoneinfo to
> pkgs/tzinfo/tzinfo/private/zoneinfo.rkt's
> default-zoneinfo-search-path, it works.
>
> However, I didn't notice a $TZDIR-like mechanism to do so
> ‘properly’.
>
> Kind regards,
>
> T G-R