this post was submitted on 24 Oct 2023
2 points (100.0% liked)
nixos
1262 readers
16 users here now
All about NixOS - https://nixos.org/
founded 4 years ago
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
After some more digging I think I figured it out.
I was trying to use
nix repl nixpkgs
to interactively query packages. But I forgot that that command loads the flake, not the package set. You have to prefix everything withlegacyPackages.x86_64-linux.
to access packages in this environment. I got better results runningnix repl
followed by:l angle-bracket nixpkgs angle-bracket
. (Btw the repl tells me how many variables have been loaded. Is there a way to list them? That would be helpful.) (Edit:nix repl nixpkgs#legacyPackages.x86_64-linux
also works)I eventually found https://github.com/NixOS/nixpkgs/blob/35d87899f7c8f6fad50447301465d51b5dd87753/doc/languages-frameworks/rust.section.md?plain=1#L18 which tells me that what I want is
pkgs.rustPlatform.buildRustPackage
I would still like a way to search for nested attributes.