We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add tips&tricks markdown page that would include some interesting non-obvious use-cases of sbomnix such as this: https://discourse.nixos.org/t/how-to-get-package-maintainers-of-all-installed-packages/27307/12
and this, that creates a list of fetched urls given a result symlink:
# Run sbomnix; include both buildtime and runtime dependencies: $ nix run github:tiiuae/sbomnix#sbomnix -- ./result --type=both # Query the sbom for fetched urls: $ nix-shell -p csvkit --run \ 'csvsql --verbose --query "select urls from sbom where urls != '\'''\'' " sbom.csv' \ | tr " " "\n" | grep -v urls | sort | uniq \ > fetch_urls.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
add tips&tricks markdown page that would include some interesting non-obvious use-cases of sbomnix such as this:
https://discourse.nixos.org/t/how-to-get-package-maintainers-of-all-installed-packages/27307/12
and this, that creates a list of fetched urls given a result symlink:
The text was updated successfully, but these errors were encountered: