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 new ‘label’ field of
: choose what you prefer!  :-)

Ludo’.



"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)))
((inferior-package? kernel)
 (string-append "GNU with "
(string-titlecase (inferior-package-name kernel)) " "
(inferior-package-version kernel)))
(else "GNU")))