Re: "GNU with" or "Guix System with"?

2019-04-27 Thread Ludovic Courtès
Hello, tumashu skribis: > (string-append "GNU with " > (string-titlecase (package-name kernel)) " " > (package-version kernel))) We could discuss this for months, but both are correct. It’s now possible to customize the label with the

"GNU with" or "Guix System with"?

2019-04-26 Thread tumashu
(define (kernel->boot-label kernel) "Return a label for the bootloader menu entry that boots KERNEL." (cond ((package? kernel) (string-append "GNU with " (string-titlecase (package-name kernel)) " " (package-version kernel)))