bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#46769: guix pull fails when quoted symbol is the 'name' of dependent


From: Ozhap
Subject: bug#46769: guix pull fails when quoted symbol is the 'name' of dependent channel
Date: Thu, 25 Feb 2021 19:26:49 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux)

So for eg, this:

(channel
 (version 0)
 (dependencies
  (channel
   (name 'some-collection)
   ...
   )))

...as given in info:guix#Declaring_Channel_Dependencies causes 'guix
pull' to fail ("channels.scm:719:22"). But when the value is unquoted:

(channel
 (version 0)
 (dependencies
  (channel
   (name some-collection)
   ...
   )))

...it works fine.

--
Ozhap





reply via email to

[Prev in Thread] Current Thread [Next in Thread]