1 #!/usr/bin/env nix-shell
2 #!nix-shell -i bash -p curl jq common-updater-scripts
5 cd "$(dirname "${BASH_SOURCE[0]}")"
7 deps_file
="$(realpath ".
/deps.nix
")"
9 new_version
="$(curl ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
10 -s "https
://api.github.com
/repos
/BleuBleu
/FamiStudio
/releases?per_page
=1" | jq -r '.[0].tag_name')"
11 old_version
="$(sed -nE 's/\s*version = "(.
*)".*/\1/p' ./default.nix)"
12 if [[ "$new_version" == "$old_version" ]]; then
19 if [[ "$1" != "--deps-only" ]]; then
20 update-source-version famistudio
"$new_version"
23 $
(nix-build .
-A famistudio.fetch-deps
--no-out-link) "$deps_file"