I’m aware of Debian’s reputation for not having the most up-to-date software in its repository but have just noticed that Thunderbird is on its current version. Which makes me ask:
When does Debian update a package? And how does it decide when to?
I’m particularly interested in when it will make available the upcoming major release of GIMP to 3.0.
Guix is interesting. Do you know how it avoids clashing with Debian packages?
@Churbleyimyam@lemm.ee yes, it simply keeps all packages downloaded isolated in it’s own database in the
/gnu/store
directory. It does not rely at all on any of the operating system’s own packages except for/lib/ldlinux*.so
. So if you install Gimp on debian viaapt-get
and then also install it withguix package
, you will get two full copies of Gimp and all of it’s dependencies. It is sort of like FlatPak, except the dependencies are tracked much more carefully, and it can do more deduplication to save space.The Guix database itself is pretty interesting, it stores packages with their unique hash, so you can install as many different versions of any package as you want and it can still guarantee none of the versions will interfere with each other. You just select whatever version you want to use with the
guix shell
command.