Join the discussion

Write your take first — we'll ask for email only when you're ready to publish.

  • Hacker News
  • > nix/store/24v9wpp393ib1gllip7ic13aycbi704g-ruby-3.3.9.drv

    A different type of madness, but are ugly names so common, why not start with ruby-3.3.9 so any list of files is semantically sorted/readable?

  • It really doesn't matter. As a normal user, you don't use `drv` files directly, and everything you configure yourself will use attribute paths in nixpkgs. E.g. `pkgs.ruby` or `pkgs.ruby_3_3`.
  • The reason it's like this is because the only way to reliably grab it is to cut the string at the first hyphen - then the rest can be almost free text.

    It you do it the other way it's harder. You can try this with nix commands /nix/store/<hash>-x is a valid way to refer to something in the store most of the time.

  • I can't find the video of the talk where either Eelco Dolstra (nix) or Todd Gamblin (spack) talks about this, but IIRC it's a design decision; you generally don't go spelunking in the nix store, but if you do, and you ls /nix/store, you'll see a huge list of packages, and due to the hash being a constant length, you can visually separate the tails of the package names like

        0009flr197p89fz2vg032g556014z7v1-libass-0.17.3.drv
        000ghm78048kh2prsfzkf93xm3803m0r-default.md
        001f6fysrshkq7gaki4lv8qkl38vjr6a-python-runtime-deps-check-hook.sh.drv
        001gp43bjqzx60cg345n2slzg7131za8-nix-nss-open-files.patch
        001im7qm8achbyh0ywil6hif6rqf284z-bootstrap-stage0-binutils-wrapper-boot.drv
        001pc0cpvpqix4hy9z296qnp0yj00f4n-zbmath-review-template.r59693.tar.xz.drv
    
    Spack, another deterministic builder / package manager, IIRC uses the reversed order so the hash is at the tail. Pros/cons under different search / inspection conditions.
  • It's done that way on purpose. Precisely so you don't try to use the paths semantically. The names literally mean nothing in this context.
  • In nix packages (derivations) are so lightweight that your store has tens of thousands of them, many with the same name, or with no meaningful name at all. On the rare occasions that you need to look in the store for a package you’re much more likely to be looking for a particular hash than a particular name. That, and having the hash as a prefix looks nicer in tabular output.
  • The package name is "secondary" information in this context. The hash is the primary one because it's stable unless the input changes.

    The semantic is "what did this configuration generate", not "what's this package's version".

  • As a mere mortal I find none of this surprising, mostly because I never understood any of it in the first place ... :)
  • If I understand this correctly, upcoming Ca-derivations will fix this by making these situations expected, properly-handled cases rather than a weird bug? https://nixos.wiki/wiki/Ca-derivations
  • ca-derivations from what i understand, fixed-output derivations but more general.

    The point of the article to me (author) was that i found it odd that Nix replaces the derivations when calculating the output path but not the derivation path. (talking about "paths" in Nix is so hard!)

  • To be clear, there is no bug here: derivers are simply not uniquely determined in the presence of fixed-output derivations, which is by design. That's even more true with CA derivations.

    CA derivations also introduce the opposite situation, namely that the same derivation can produce different output paths for different users (if the build is not bitwise reproducible).

  • Yes, a hope of mine is that we can stop using "hash derivation modulo" entirely.

    I've recently started some fancy formal spec-level documentation here https://github.com/NixOS/nix/pull/14408 The "resolution" equivalence class is both simpler and better than the "hash derivation modulo ..." one.

    (The fact that it is a mouthful to say what the derivations are modulo kinda gives the game away! I put "hash quotient derivation" in the docs to side-step the issue.)

  • > The road to Nix enlightenment is no joke and full of dragons.

    Nix was a great research project. Now is the time to rewrite it from the ground up.

  • Eh. This can be applied to so many technologies that run the world..
  • It has been rewritten a few times already. The "fixed output hash" is a dirty optimisation hack borne out of real-world needs and not a research idea.
  • I feel the same about HCL in Terraform. The tool is perfect, the language is bollocks.
  • Well, there's Guix as an alternative if you want a similar concept but different implementation philosophy. For me the major disadvantage of Guix is lack of package availability compared to Nix.
  • The core store layer is quite small, and I am trying to thoroughly document it, with all 3 of:

    - a more "academic" spec of what it does

    - nuts-and-bolts JSON schema for many data types

    - JSON golden tests instead of C++ literals in the unit tests as often as possible.

    I hope this will make additional store layer easy to churn out.

    (The "hash derivation modulo" that is so fiddly described in this blog post can be dropped in a world where we no longer have input addressing, and just have content-addressing. Or, in a world where we have a new, simpler type of input-addressing instead.)

  • +1 to Farid, great write-up! What you’re seeing is the long-standing “deriver” mismatch: fixed-output derivations can change their .drv without changing the output path. Eelco is calling it out as well in the comment below. I believe the idea behind the path forward is there but happy to hear more!

    Also. Check out Farid's other posts.

  • The deriver field in Nix has always been a misfeature. It was intended to provide traceability back to the Nix expression used to create the derivation, but it doesn't actually do that (since that wasn't really possible in the pre-flakes world, without hermetic evaluation). So instead it just causes a lot of confusion when the deriver recorded in the binary cache doesn't match the local evaluation result, due to fixed-output derivations changing.

    In the future, Nix will hopefully gain proper provenance tracking that will tell you exactly where a store path came from: https://github.com/NixOS/nix/pull/11749

  • is that the 'build-trace' feature I saw John write about ? (I want to explore that more)
  • Presumably this would support a big improvement to both SBOM generation as well as various UX features and workflow improvements.
  • The biggest problem of all is that derivers are not unique! A separate "build trace" map will solve this.