Created
November 17, 2022 18:24
-
-
Save balsoft/f312b15a9d46400bd66d386a23015323 to your computer and use it in GitHub Desktop.
Nix: download all dependencies required for an offline build of a package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nix eval np#hello.drvPath --raw \ | |
| xargs nix-store -qR \ | |
| grep '\.drv$' \ | |
| xargs -n1 nix show-derivation \ | |
| jq -s '.[] | select(.[] | .env | has("outputHash")) | keys | .[]' -r \ | |
| xargs nix build --no-link --print-out-paths |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment