nixpkgs/pkgs/games/osu-lazer/update.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
572 B
Bash
Raw Normal View History

2020-04-11 18:12:04 +00:00
#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=../../../. -i bash -p curl jq common-updater-scripts
2020-04-11 18:12:04 +00:00
set -eo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
2020-12-08 19:02:20 +00:00
new_version="$(curl -s "https://api.github.com/repos/ppy/osu/releases?per_page=1" | jq -r '.[0].name')"
2020-04-11 18:12:04 +00:00
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"
if [[ "$new_version" == "$old_version" ]]; then
echo "Up to date"
exit 0
2020-04-11 18:12:04 +00:00
fi
cd ../../..
if [[ "$1" != "--deps-only" ]]; then
update-source-version osu-lazer "$new_version"
fi
$(nix-build . -A osu-lazer.fetch-deps --no-out-link)