List Files of Package

Depending on whether you use flakes or channels one of these 2 works:

$ find $(nix build nixpkgs#hello --print-out-paths --no-link)|head -3
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1/bin
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1/bin/hello
$ find $(nix-build '<nixpkgs>' -A hello --no-link)|head -3
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1/bin
/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1/bin/hello
2 Likes