nixpkgs/pkgs/by-name/sk/skeditor/update.sh
eveeifyeve c92e591bda skeditor: init at 2.8.1
skeditor: switch to skeditor csproj

skeditor: fix meta by renaming licences to licence

skeditor: fix formatting

skeditor: apply half of aleksanaa suggestions

skeditor: apply meta suggestion

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix eval error with license

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>

skeditor: fix description to meet conventions

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
2024-10-29 09:35:51 +11:00

17 lines
615 B
Bash

#!/usr/bin/env nix-shell
#!nix-shell -I nixpkgs=./. -i bash -p curl jq common-updater-scripts gnused nix coreutils
set -euo pipefail
latestVersion="$(curl -s "https://api.github.com/repos/SkEditorTeam/skEditor/releases?per_page=1" | jq -r ".[0].tag_name" | sed 's/^v//')"
currentVersion=$(nix-instantiate --eval -E "with import ./. {}; skeditor.version or (lib.getVersion skeditor)" | tr -d '"')
if [[ "$currentVersion" == "$latestVersion" ]]; then
echo "skeditor is up-to-date: $currentVersion"
exit 0
fi
update-source-version skeditor "$latestVersion"
$(nix-build . -A skeditor.fetch-deps --no-out-link)