mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
c92e591bda
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>
17 lines
615 B
Bash
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)
|