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.

  • Ramin Honary@fe.disroot.org
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    6 days ago

    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 via apt-get and then also install it with guix 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.

    • Churbleyimyam@lemm.eeOP
      link
      fedilink
      arrow-up
      1
      ·
      1 day ago

      That all sounds extremely cool. I like that it’s endorsed by the fsf as well. What’s the catch? Is it hard to set up or run?