Hello, On 2024-06-27 05:50:02 -0700, Felix Lechner via Development of GNU Guix and the GNU System distribution. wrote: > Hi Efraim, > > On Wed, Jun 26 2024, Efraim Flashner wrote: > > > The packages are public but hidden > > Interesting! How does that work, please? I looked at the package > definition [1] but could not see fields that hide it. Thanks! As far as I can tell *all* versions except the "official" are hidden. The "base" package (rust-1.55) has this property: (properties '((hidden? . #t) ...) All other rusts inherit from it, therefore getting the property as well. The "offical" rust package (currently at 1.55) has these properties: (properties (append (alist-delete 'hidden? (package-properties base-rust)) (clang-compiler-cpu-architectures "15"))) Making it install-able. At least I think this is how it works. Tomas -- There are only two hard things in Computer Science: cache invalidation, naming things and off-by-one errors.