unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* GuixSD + StumpWM
@ 2016-12-28  0:50 Daniel Pimentel
  2016-12-28  1:11 ` Leo Famulari
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Daniel Pimentel @ 2016-12-28  0:50 UTC (permalink / raw)
  To: guix-devel

Guixs,

I'm trying use StumpWM in my config.scm but there's code for module:

guix system: error: failed to load '/etc/config.scm':
ice-9/boot-9.scm:2870:6: In procedure resolve-interface:
ice-9/boot-9.scm:2870:6: no code for module (gnu packages sbcl-stumpwm)

My config.scm:
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules wm sbcl-stumpwm certs)

...

   (packages (cons* sbcl-stumpwm      ;window manager
                    nss-certs         ;for HTTPS access
                    %base-packages))

I like ratpoison, but stumpwm is very cool (Lisp :)

Thanks,

-- 
Daniel Pimentel (d4n1)

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

* Re: GuixSD + StumpWM
  2016-12-28  0:50 GuixSD + StumpWM Daniel Pimentel
@ 2016-12-28  1:11 ` Leo Famulari
  2016-12-28  1:13 ` Carlo Zancanaro
  2016-12-28 18:09 ` Daniel Pimentel
  2 siblings, 0 replies; 9+ messages in thread
From: Leo Famulari @ 2016-12-28  1:11 UTC (permalink / raw)
  To: Daniel Pimentel; +Cc: guix-devel

On Tue, Dec 27, 2016 at 09:50:47PM -0300, Daniel Pimentel wrote:
> Guixs,
> 
> I'm trying use StumpWM in my config.scm but there's code for module:
> 
> guix system: error: failed to load '/etc/config.scm':
> ice-9/boot-9.scm:2870:6: In procedure resolve-interface:
> ice-9/boot-9.scm:2870:6: no code for module (gnu packages sbcl-stumpwm)
> 
> My config.scm:
> (use-modules (gnu) (gnu system nss))
> (use-service-modules desktop)
> (use-package-modules wm sbcl-stumpwm certs)

The sbcl-stumpwm package is in the lisp module, which I checked like
this:

$ guix package --show=sbcl-stumpwm
name: sbcl-stumpwm
version: 0.9.9
outputs: out bin
systems: x86_64-linux i686-linux armhf-linux mips64el-linux
dependencies: sbcl-cl-ppcre-2.0.11 sbcl-clx-0.0.0-1.1c62774
location: gnu/packages/lisp.scm:751:2
[...]

Can you try adjusting the (use-package-modules) field accordingly?

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

* Re: GuixSD + StumpWM
  2016-12-28  0:50 GuixSD + StumpWM Daniel Pimentel
  2016-12-28  1:11 ` Leo Famulari
@ 2016-12-28  1:13 ` Carlo Zancanaro
  2016-12-28 18:09 ` Daniel Pimentel
  2 siblings, 0 replies; 9+ messages in thread
From: Carlo Zancanaro @ 2016-12-28  1:13 UTC (permalink / raw)
  To: Daniel Pimentel; +Cc: guix-devel

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

On Wed, Dec 28 2016, Daniel Pimentel wrote 
> I'm trying use StumpWM in my config.scm but there's code for 
> module:
>
> guix system: error: failed to load '/etc/config.scm': 
> ice-9/boot-9.scm:2870:6: In procedure resolve-interface: 
> ice-9/boot-9.scm:2870:6: no code for module (gnu packages 
> sbcl-stumpwm)
>
> My config.scm: (use-modules (gnu) (gnu system nss)) 
> (use-service-modules desktop) (use-package-modules wm 
> sbcl-stumpwm certs)

It looks like the sbcl-stumpwm package is in (gnu packages lisp). If you
replace `sbcl-stumpwm` with `lisp` here it should be able to find it
(ie. `(use-package-modules wm lisp certs)`).

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

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

* Re: GuixSD + StumpWM
@ 2016-12-28  2:25 Daniel Pimentel (d4n1)
  2017-01-14 22:18 ` Ricardo Wurmus
  0 siblings, 1 reply; 9+ messages in thread
From: Daniel Pimentel (d4n1) @ 2016-12-28  2:25 UTC (permalink / raw)
  To: Carlo Zancanaro; +Cc: guix-devel

Yes, it's works, thanks. 

I did install but now there's another problem: login. 
I did in my home following stumpwm docs:
echo > "exec sbcl-stumpwm" > ~/.xinitrc 
But not start stumpwm :(On Dec 27, 2016 10:13 PM, Carlo Zancanaro <carlo@zancanaro.id.au> wrote:
>
> On Wed, Dec 28 2016, Daniel Pimentel wrote 
> > I'm trying use StumpWM in my config.scm but there's code for 
> > module: 
> > 
> > guix system: error: failed to load '/etc/config.scm': 
> > ice-9/boot-9.scm:2870:6: In procedure resolve-interface: 
> > ice-9/boot-9.scm:2870:6: no code for module (gnu packages 
> > sbcl-stumpwm) 
> > 
> > My config.scm: (use-modules (gnu) (gnu system nss)) 
> > (use-service-modules desktop) (use-package-modules wm 
> > sbcl-stumpwm certs) 
>
> It looks like the sbcl-stumpwm package is in (gnu packages lisp). If you 
> replace `sbcl-stumpwm` with `lisp` here it should be able to find it 
> (ie. `(use-package-modules wm lisp certs)`). 

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

* Re: GuixSD + StumpWM
@ 2016-12-28  3:02 Daniel Pimentel (d4n1)
  0 siblings, 0 replies; 9+ messages in thread
From: Daniel Pimentel (d4n1) @ 2016-12-28  3:02 UTC (permalink / raw)
  To: Carlo Zancanaro; +Cc: guix-devel

It's work now!

I put lisp module and add sbcl-stumpwm in my config. But the stumpwm binary not appears so I install it in my guix profile:
guix package -I sbcl-stumpwm

Note: only work with .xession or .xinitrc

Thanks,On Dec 27, 2016 11:25 PM, "Daniel Pimentel (d4n1)" <d4n1@d4n1.org> wrote:
>
> Yes, it's works, thanks.
>
> I did install but now there's another problem: login. 
> I did in my home following stumpwm docs:
> echo > "exec sbcl-stumpwm" > ~/.xinitrc 
> But not start stumpwm :(On Dec 27, 2016 10:13 PM, Carlo Zancanaro <carlo@zancanaro.id.au> wrote:
> >
> > On Wed, Dec 28 2016, Daniel Pimentel wrote 
> > > I'm trying use StumpWM in my config.scm but there's code for 
> > > module: 
> > > 
> > > guix system: error: failed to load '/etc/config.scm': 
> > > ice-9/boot-9.scm:2870:6: In procedure resolve-interface: 
> > > ice-9/boot-9.scm:2870:6: no code for module (gnu packages 
> > > sbcl-stumpwm) 
> > > 
> > > My config.scm: (use-modules (gnu) (gnu system nss)) 
> > > (use-service-modules desktop) (use-package-modules wm 
> > > sbcl-stumpwm certs) 
> >
> > It looks like the sbcl-stumpwm package is in (gnu packages lisp). If you 
> > replace `sbcl-stumpwm` with `lisp` here it should be able to find it 
> > (ie. `(use-package-modules wm lisp certs)`). 

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

* Re: GuixSD + StumpWM
@ 2016-12-28  3:04 Daniel Pimentel (d4n1)
  0 siblings, 0 replies; 9+ messages in thread
From: Daniel Pimentel (d4n1) @ 2016-12-28  3:04 UTC (permalink / raw)
  To: Carlo Zancanaro; +Cc: guix-devel

*guix package -i sbcl-stumpwm: binOn Dec 28, 2016 12:02 AM, "Daniel Pimentel (d4n1)" <d4n1@d4n1.org> wrote:
>
> It's work now!
>
> I put lisp module and add sbcl-stumpwm in my config. But the stumpwm binary not appears so I install it in my guix profile:
> guix package -I sbcl-stumpwm
>
> Note: only work with .xession or .xinitrc
>
> Thanks,On Dec 27, 2016 11:25 PM, "Daniel Pimentel (d4n1)" <d4n1@d4n1.org> wrote:
> >
> > Yes, it's works, thanks.
> >
> > I did install but now there's another problem: login. 
> > I did in my home following stumpwm docs:
> > echo > "exec sbcl-stumpwm" > ~/.xinitrc 
> > But not start stumpwm :(On Dec 27, 2016 10:13 PM, Carlo Zancanaro <carlo@zancanaro.id.au> wrote:
> > >
> > > On Wed, Dec 28 2016, Daniel Pimentel wrote 
> > > > I'm trying use StumpWM in my config.scm but there's code for 
> > > > module: 
> > > > 
> > > > guix system: error: failed to load '/etc/config.scm': 
> > > > ice-9/boot-9.scm:2870:6: In procedure resolve-interface: 
> > > > ice-9/boot-9.scm:2870:6: no code for module (gnu packages 
> > > > sbcl-stumpwm) 
> > > > 
> > > > My config.scm: (use-modules (gnu) (gnu system nss)) 
> > > > (use-service-modules desktop) (use-package-modules wm 
> > > > sbcl-stumpwm certs) 
> > >
> > > It looks like the sbcl-stumpwm package is in (gnu packages lisp). If you 
> > > replace `sbcl-stumpwm` with `lisp` here it should be able to find it 
> > > (ie. `(use-package-modules wm lisp certs)`). 

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

* Re: GuixSD + StumpWM
  2016-12-28  0:50 GuixSD + StumpWM Daniel Pimentel
  2016-12-28  1:11 ` Leo Famulari
  2016-12-28  1:13 ` Carlo Zancanaro
@ 2016-12-28 18:09 ` Daniel Pimentel
  2 siblings, 0 replies; 9+ messages in thread
From: Daniel Pimentel @ 2016-12-28 18:09 UTC (permalink / raw)
  To: guix-devel

I posted about it in my blog[1]: d4n1.org/guixsd.html

[1] Developed with Haunt (thanks David) :)

---
Daniel Pimentel (d4n1)

On 2016-12-27 21:50, Daniel Pimentel wrote:
> Guixs,
> 
> I'm trying use StumpWM in my config.scm but there's code for module:
> 
> guix system: error: failed to load '/etc/config.scm':
> ice-9/boot-9.scm:2870:6: In procedure resolve-interface:
> ice-9/boot-9.scm:2870:6: no code for module (gnu packages sbcl-stumpwm)
> 
> My config.scm:
> (use-modules (gnu) (gnu system nss))
> (use-service-modules desktop)
> (use-package-modules wm sbcl-stumpwm certs)
> 
> ...
> 
>   (packages (cons* sbcl-stumpwm      ;window manager
>                    nss-certs         ;for HTTPS access
>                    %base-packages))
> 
> I like ratpoison, but stumpwm is very cool (Lisp :)
> 
> Thanks,

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

* Re: GuixSD + StumpWM
  2016-12-28  2:25 Daniel Pimentel (d4n1)
@ 2017-01-14 22:18 ` Ricardo Wurmus
  0 siblings, 0 replies; 9+ messages in thread
From: Ricardo Wurmus @ 2017-01-14 22:18 UTC (permalink / raw)
  To: Daniel Pimentel (d4n1); +Cc: guix-devel, Carlo Zancanaro


Daniel Pimentel (d4n1) <d4n1@d4n1.org> writes:

> Yes, it's works, thanks.
>
> I did install but now there's another problem: login.
> I did in my home following stumpwm docs:
> echo > "exec sbcl-stumpwm" > ~/.xinitrc

“~/.xinitrc” must be executable:

   chmod +x ~/.xinitrc

I just installed stumpwm and I’m currently trying to make hacking with
Emacs+SLIME work.  So far unsuccessfully.

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
http://elephly.net

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

* Re: GuixSD + StumpWM
@ 2017-01-15  1:16 Daniel Pimentel (d4n1)
  0 siblings, 0 replies; 9+ messages in thread
From: Daniel Pimentel (d4n1) @ 2017-01-15  1:16 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, Carlo Zancanaro

Yes, it's work now.

Thanks,On Jan 14, 2017 7:18 PM, Ricardo Wurmus <rekado@elephly.net> wrote:
>
>
> Daniel Pimentel (d4n1) <d4n1@d4n1.org> writes: 
>
> > Yes, it's works, thanks. 
> > 
> > I did install but now there's another problem: login. 
> > I did in my home following stumpwm docs: 
> > echo > "exec sbcl-stumpwm" > ~/.xinitrc 
>
> “~/.xinitrc” must be executable: 
>
>    chmod +x ~/.xinitrc 
>
> I just installed stumpwm and I’m currently trying to make hacking with 
> Emacs+SLIME work.  So far unsuccessfully. 
>
> -- 
> Ricardo 
>
> GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC 
> http://elephly.net 
>

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

end of thread, other threads:[~2017-01-15  1:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-28  0:50 GuixSD + StumpWM Daniel Pimentel
2016-12-28  1:11 ` Leo Famulari
2016-12-28  1:13 ` Carlo Zancanaro
2016-12-28 18:09 ` Daniel Pimentel
  -- strict thread matches above, loose matches on Subject: below --
2016-12-28  2:25 Daniel Pimentel (d4n1)
2017-01-14 22:18 ` Ricardo Wurmus
2016-12-28  3:02 Daniel Pimentel (d4n1)
2016-12-28  3:04 Daniel Pimentel (d4n1)
2017-01-15  1:16 Daniel Pimentel (d4n1)

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).