chore(nix): support v0.6 lockfile parsing

This commit is contained in:
Erica Marigold 2025-02-16 17:07:34 +05:30
parent db60b17f1a
commit 89f6713aea
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

@ -70,7 +70,8 @@ let
#!/bin/bash
set -euo pipefail
version=$(toml2json $src | jq -r '.graph."${package}" | to_entries[0].value.pkg_ref.version')
version=$(toml2json $src | jq -r '.graph | with_entries(select(.key | test("^${package}"))) | to_entries[0].key | capture("(@(?<ve
rsion>[^ ]+))") | .version')
if [[ "${exeName}" = "stylua" ]]; then
# Special case for stylua which has versions that start with `v`
version="v$version"