Re: Packaging timewarrior

2023-01-16 Thread Trev
On 23/01/16 06:03PM, Timo Wilken wrote: > Hi Trev, > > > On 16 January 2023 17:44:45 CET, Trev wrote: > >If it's of any use to anybody, I have attached the full build log. Any > >guidance would be appreciated. > > Make logs can be a bit annoying -- it runs mu

Packaging timewarrior

2023-01-16 Thread Trev
ogram: "make" arguments: ("-j" "8") exit-status: 2 term-signal: #f stop-signal: #f> phase `build' failed after 12.0 seconds command "make" "-j" "8" failed with status 2 - If it's of any use to anybody, I have attached the full

Re: Stumpwm & using Lisp in guix - particularly quicklisp

2022-12-25 Thread Trev
Paul Jewell writes: > Hi Trev, > > Thanks for the reply! > > On 25/12/2022 07:41, Trev wrote: >> Paul Jewell via writes: >> >>> Good morning Guix, >>> >>> I have a working stumpwm config which I use on my desktop gentoo >>> install

Re: Stumpwm & using Lisp in guix - particularly quicklisp

2022-12-25 Thread Trev
seemed appropriate. For everything else, I have my own personal guix channel. I do this to avoid the need for activating guix shell over and over again. I get that quicklisp is an expected way to manage 3rd party packages for Common Lisp but after years of working with NPM & JavaScript, the

Re: Stumpwm & using Lisp in guix - particularly quicklisp

2022-12-25 Thread Trev
seemed appropriate. For everything else, I have my own personal guix channel. I do this to avoid the need for activating guix shell over and over again. I get that quicklisp is an expected way to manage 3rd party packages for Common Lisp but after years of working with NPM & JavaScript, the i

Re: How can I upgrade all the packages in my default profile?

2022-09-27 Thread Trev
On September 27, 2022 9:07:36 a.m. PDT, jgart wrote: >guix upgrade * or guix upgrade '*' don't work for me :( First do a guix pull to update your local guix repository. Then you must run `guix system reconfigure` or `guix home reconfigure` depending on where/which profiles you are using.

Re: Guix Home, .local/bin executable scripts

2022-09-24 Thread Trev
pens to be the bash package reference so long as it is in the right lexical scope. See (with-imported-modules) in the manual. (substitute* "scripts/hello.sh" ("#!/bin/bash" (string-append #$bash "/bin/bash"))) Link to manual: https://guix.gnu.org/manual/en/html_node/G_0

Problems with tracker-miners(?)

2022-09-22 Thread Trev
file "./nongnu.pub")) %default-authorized-guix-keys)) - Any suggestions are appreciated. Thank you all -- Trev : 0FB7 D06B 4A2A F07E AD5B 1169 183B 6306 8AA1 D206

Re: sbcl-slime-swank won't load

2022-08-20 Thread Trev
Guillaume Le Vaillant writes: > Trev skribis: > >> >> Would the path of least resistance be to install sbcl explicitly in my home >> profile? >> > > Try installing sbcl to your home profile to see if it fixes the problem, > then if you don't want

Re: sbcl-slime-swank won't load

2022-08-19 Thread Trev
On August 19, 2022 7:49:55 a.m. PDT, Guillaume Le Vaillant wrote: >Trev skribis: > >> Guillaume Le Vaillant writes: >> >>> Is sbcl installed in your user profile or not? >> >> Not directly. It might be there as a dependency. Everything other than &g

Re: sbcl-slime-swank won't load

2022-08-19 Thread Trev
Guillaume Le Vaillant writes: > Trev skribis: > >> [21 lines cropped] Any suggestions? > > I can't reproduce the issue on my machine. There must be a difference > in our setups. > > Are you on a Guix system, or on another distribution? Guix system :) >

sbcl-slime-swank won't load

2022-08-18 Thread Trev
something in swank is trying to byte compile into the store itself. My other sbcl-stumpwm modules load and work. Any suggestions? -- Trev : 0FB7 D06B 4A2A F07E AD5B 1169 183B 6306 8AA1 D206 signature.asc Description: PGP signature

Re: Troubles building "nimble" with nim

2022-07-24 Thread Trev
Jul 06, 2022 at 10:57:08AM -0700, Trev wrote: >> >> Hello Guix! >> >> I am in the weeds while trying to properly build "nimble", the package >> manager that is included with the nim programming language. The current >> guix package (gnu/pack

Troubles building "nimble" with nim

2022-07-06 Thread Trev
efficiency. This means it focuses on compile-time mechanisms in all their various forms.") (license license:expat))) #+END_SRC I have tried: 1. Symlinking (without any success) /bin/sh to (which "bash") 2. Exporting $SHELL to (which "bash") 3. Attempted (without much luck) to ~alias cc=gcc~ to see if it's not the shell that's missing, it's the command "cc", and adding cmake as a separate input 4. Grokking the Nim source code that I don't perfectly understand to see how it could somehow decide to call something that isn't on path aside from a string that's "/bin/sh". If someone appreciates packaging this better than can share some wisdom, it would be appreciated. -- Trev : 0FB7 D06B 4A2A F07E AD5B 1169 183B 6306 8AA1 D206 signature.asc Description: PGP signature

Re: Guix home packages and garbage collection

2022-06-27 Thread Trev
less problematic if I accepted that I should either gc far less frequently or use something like gnu stow for environment/config instead. On June 27, 2022 11:11:01 a.m. PDT, Trev wrote: >"(" writes: > >> I don't experience this issue personally, and I use `guix

Re: Guix home packages and garbage collection

2022-06-27 Thread Trev
y machine work, here's how I am set up. If I have made some sort of blunder, I would love to know. https://git.trevdev.ca/trevdev/guix-home-temp -- Trev : 0FB7 D06B 4A2A F07E AD5B 1169 183B 6306 8AA1 D206 signature.asc Description: PGP signature

Guix home packages and garbage collection

2022-06-27 Thread Trev
I get some idea as to whether or not I have an actual problem with guix home here or if this is the current intended side-effect of guix gc with packages installed via guix home? This way I can migrate away from guix home and leave that alone until it matures, or perhaps just opt out. Thank you for th

Re: Guix home mcron help

2022-06-24 Thread Trev
gestions. Thanks for reading this :) Trev writes: > Hey guys, > > I am trying to appreciate how to set up a guix home mcron using a separate > module that I wrote that exports the job. > > My config lives in ~/.config/guix/home/config.scm > > My cron module lives in ~/.

Guix home mcron help

2022-06-23 Thread Trev
full: https://gist.github.com/trev-dev/3312444daa75758822c06db5922aac4f -- Trev : 0FB7 D06B 4A2A F07E AD5B 1169 183B 6306 8AA1 D206 signature.asc Description: PGP signature