mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
14 lines
371 B
Text
14 lines
371 B
Text
# Sort each entry in the top-level dictionary
|
|
.[] |= sort_by(
|
|
if type == "string"
|
|
then
|
|
# Sort string overrides alphabetically
|
|
.
|
|
else
|
|
# Sort entries with an `until` field above entries with a `from` field
|
|
.from,
|
|
.until,
|
|
# Sort build systems with the same `from` and `until` values
|
|
.buildSystem
|
|
end
|
|
)
|