Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
1.0 KiB
Nu
Executable File
35 lines
1.0 KiB
Nu
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i nu -p nushell nixfmt common-updater-scripts
|
|
|
|
let latest = ^list-git-tags --url=https://github.com/ghostty-org/ghostty
|
|
| lines
|
|
| sort --natural
|
|
| last
|
|
| str trim --left --char "v"
|
|
|
|
let current = ^nix-instantiate --eval -A ghostty.version | str trim -c '"'
|
|
|
|
if $latest == $current {
|
|
print "Up to date!"
|
|
exit
|
|
}
|
|
|
|
print $"Updating Ghostty: ($current) -> ($latest)"
|
|
|
|
^update-source-version ghostty $latest --file=./pkgs/by-name/gh/ghostty/package.nix
|
|
|
|
# Update deps.nix
|
|
http get $"https://raw.githubusercontent.com/ghostty-org/ghostty/refs/tags/v($latest)/build.zig.zon.nix"
|
|
| ^nixfmt
|
|
| save -f ./pkgs/by-name/gh/ghostty/deps.nix
|
|
|
|
# In extraordinary cases the DMG might take a while to be notarized by Apple
|
|
# and so it's possible for a Git tag to have no corresponding notarized DMG download.
|
|
# Don't fail here if that happens.
|
|
try {
|
|
^update-source-version ghostty-bin $latest --file=./pkgs/by-name/gh/ghostty-bin/package.nix
|
|
} catch {
|
|
print "Failed to update bin package (is the DMG file uploaded yet?)"
|
|
}
|
|
|