all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* newbe question
@ 2020-06-03 14:03 Adam Kandur via
  2020-06-03 14:20 ` Ricardo Wurmus
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Adam Kandur via @ 2020-06-03 14:03 UTC (permalink / raw)
  To: Help Guix


hi everyone! why when i "$ guix pull" i need to connect to ci.guix.gnu.org? 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2020-06-03 14:03 Adam Kandur via
@ 2020-06-03 14:20 ` Ricardo Wurmus
  2020-06-03 14:21 ` Julien Lepiller
  2020-06-05 11:12 ` Joshua Branson
  2 siblings, 0 replies; 10+ messages in thread
From: Ricardo Wurmus @ 2020-06-03 14:20 UTC (permalink / raw)
  To: Adam Kandur; +Cc: help-guix


Adam Kandur via <help-guix@gnu.org> writes:

> why when i "$ guix pull" i need to connect to ci.guix.gnu.org? 

ci.guix.gnu.org provides you with binaries, so that you don’t have to
build everything from source.  By default Guix will fetch from
ci.guix.gnu.org, but you don’t have to download anything from
ci.guix.gnu.org if you don’t want to.

You can download from any other machine that runs “guix publish” or
contact the upstream servers directly to fetch source code and build
everything locally.

-- 
Ricardo


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2020-06-03 14:03 Adam Kandur via
  2020-06-03 14:20 ` Ricardo Wurmus
@ 2020-06-03 14:21 ` Julien Lepiller
  2020-06-05 11:12 ` Joshua Branson
  2 siblings, 0 replies; 10+ messages in thread
From: Julien Lepiller @ 2020-06-03 14:21 UTC (permalink / raw)
  To: Adam Kandur, Help Guix

Le 3 juin 2020 10:03:34 GMT-04:00, Adam Kandur via <help-guix@gnu.org> a écrit :
>
>hi everyone! why when i "$ guix pull" i need to connect to
>ci.guix.gnu.org? 

It's the build farm. Guix checks for the availability of substitutes, so you don't have to spend hours building something that was already built.

Of course you can disable substitutes (--no-substitutes) or specify another substitute server if you wish (--substitute-urls).

HTH!


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2020-06-03 14:03 Adam Kandur via
  2020-06-03 14:20 ` Ricardo Wurmus
  2020-06-03 14:21 ` Julien Lepiller
@ 2020-06-05 11:12 ` Joshua Branson
  2 siblings, 0 replies; 10+ messages in thread
From: Joshua Branson @ 2020-06-05 11:12 UTC (permalink / raw)
  To: Adam Kandur via


You just need to be connected to the internet.  Guix will do the rest.


guix pull

guix pull -u # will update all of your packages in your user profile

sudo guix system reconfigure config.scm # will update your system

-- 
Joshua Branson
Sent from Emacs and Gnus


^ permalink raw reply	[flat|nested] 10+ messages in thread

* newbe question
@ 2021-05-10 23:16 Adam Kandur via Development of GNU Guix and the GNU System distribution.
  2021-05-11 11:53 ` Bone Baboon
  0 siblings, 1 reply; 10+ messages in thread
From: Adam Kandur via Development of GNU Guix and the GNU System distribution. @ 2021-05-10 23:16 UTC (permalink / raw)
  To: Guix Devel

hi everyoone! is there any example of packed racket code?


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2021-05-10 23:16 newbe question Adam Kandur via Development of GNU Guix and the GNU System distribution.
@ 2021-05-11 11:53 ` Bone Baboon
  2021-05-11 13:23   ` Adam Kandur via Development of GNU Guix and the GNU System distribution.
  0 siblings, 1 reply; 10+ messages in thread
From: Bone Baboon @ 2021-05-11 11:53 UTC (permalink / raw)
  To: Adam Kandur; +Cc: guix-devel

Adam Kandur via Development of GNU Guix and the GNU System distribution. writes:

> hi everyoone! is there any example of packed racket code?

The Guix repository has a file for racket packages
`/gnu/packages/racket.scm`.  You can look at this file here
https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/racket.scm
or by cloning the git repository `git clone
https://git.savannah.gnu.org/git/guix.git` and inspecting the files it
contains locally.

The way I found the location of this file was by running `guix search
racket` and in the output I saw a package for racket and
racket-minimal.  Then looking at the information on these packages there
is a field labeled location.  Using racket minimal as an example it says
"location:  gnu/packages/racket.scm:67:2".  The
"gnu/packages/racket.scm" corresponds with the path of the file in the
Guix repository.  There is even line and column information provided with "67:2".


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2021-05-11 11:53 ` Bone Baboon
@ 2021-05-11 13:23   ` Adam Kandur via Development of GNU Guix and the GNU System distribution.
  0 siblings, 0 replies; 10+ messages in thread
From: Adam Kandur via Development of GNU Guix and the GNU System distribution. @ 2021-05-11 13:23 UTC (permalink / raw)
  To: Bone Baboon; +Cc: Guix Devel

ohhhh, thank you. i haven't checked. this is a new file?
anyway, thank you for your message



May 11, 2021, 14:53 by bone.baboon@disroot.org:

> Adam Kandur via Development of GNU Guix and the GNU System distribution. writes:
>
>> hi everyoone! is there any example of packed racket code?
>>
>
> The Guix repository has a file for racket packages
> `/gnu/packages/racket.scm`.  You can look at this file here
> https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/racket.scm
> or by cloning the git repository `git clone
> https://git.savannah.gnu.org/git/guix.git` and inspecting the files it
> contains locally.
>
> The way I found the location of this file was by running `guix search
> racket` and in the output I saw a package for racket and
> racket-minimal.  Then looking at the information on these packages there
> is a field labeled location.  Using racket minimal as an example it says
> "location:  gnu/packages/racket.scm:67:2".  The
> "gnu/packages/racket.scm" corresponds with the path of the file in the
> Guix repository.  There is even line and column information provided with "67:2".
>



^ permalink raw reply	[flat|nested] 10+ messages in thread

* newbe question
@ 2021-05-11 15:05 Adam Kandur via
  2021-05-11 15:22 ` Guillaume Le Vaillant
  0 siblings, 1 reply; 10+ messages in thread
From: Adam Kandur via @ 2021-05-11 15:05 UTC (permalink / raw)
  To: Help Guix

hi everyone!
is there any example of command line application written in common lisp and packed with guix?


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2021-05-11 15:05 Adam Kandur via
@ 2021-05-11 15:22 ` Guillaume Le Vaillant
  2021-05-11 16:19   ` Adam Kandur via
  0 siblings, 1 reply; 10+ messages in thread
From: Guillaume Le Vaillant @ 2021-05-11 15:22 UTC (permalink / raw)
  To: Adam Kandur; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 301 bytes --]

Adam Kandur via <help-guix@gnu.org> skribis:

> hi everyone!
> is there any example of command line application written in common lisp and packed with guix?

There is uglify-js or tinmop I think.
If what you want is examples of standalone Common Lisp programs, you
could also look at stumpwm or nyxt.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: newbe question
  2021-05-11 15:22 ` Guillaume Le Vaillant
@ 2021-05-11 16:19   ` Adam Kandur via
  0 siblings, 0 replies; 10+ messages in thread
From: Adam Kandur via @ 2021-05-11 16:19 UTC (permalink / raw)
  To: Guillaume Le Vaillant; +Cc: Help Guix

ohhhh, thank you =)



May 11, 2021, 18:22 by glv@posteo.net:

> Adam Kandur via <help-guix@gnu.org> skribis:
>
>> hi everyone!
>> is there any example of command line application written in common lisp and packed with guix?
>>
>
> There is uglify-js or tinmop I think.
> If what you want is examples of standalone Common Lisp programs, you
> could also look at stumpwm or nyxt.
>


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-05-12 22:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-10 23:16 newbe question Adam Kandur via Development of GNU Guix and the GNU System distribution.
2021-05-11 11:53 ` Bone Baboon
2021-05-11 13:23   ` Adam Kandur via Development of GNU Guix and the GNU System distribution.
  -- strict thread matches above, loose matches on Subject: below --
2021-05-11 15:05 Adam Kandur via
2021-05-11 15:22 ` Guillaume Le Vaillant
2021-05-11 16:19   ` Adam Kandur via
2020-06-03 14:03 Adam Kandur via
2020-06-03 14:20 ` Ricardo Wurmus
2020-06-03 14:21 ` Julien Lepiller
2020-06-05 11:12 ` Joshua Branson

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.