nixpkgs/pkgs/development/tools/omnisharp-roslyn/updater.sh
GGG KILLER 97bcc3a2e0
omnisharp-roslyn: 1.38.2 -> 1.39.1 (#182409)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-08-17 14:35:01 +02:00

67 lines
2.1 KiB
Bash
Executable File

#! /usr/bin/env nix-shell
#! nix-shell -i bash -p curl jq common-updater-scripts nuget-to-nix
# shellcheck shell=bash
# WARNING: you need BOTH .NET 7 and 6 to run this script (and they must be on your path
# using dotnetCorePackages.combinePackages).
set -euo pipefail
SDK7_VERSION=$(dotnet --version)
replaceInPlace(){
local contents
contents=$(cat "$1")
contents=${contents//$2/$3}
echo "$contents">"$1"
}
cd "$(dirname "${BASH_SOURCE[0]}")"
deps_file="$(realpath "./deps.nix")"
new_version="$(curl -s "https://api.github.com/repos/OmniSharp/omnisharp-roslyn/releases?per_page=1" | jq -r '.[0].name')"
old_version="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"
if [[ "$new_version" == "$old_version" ]]; then
echo "Already up to date!"
exit 0
fi
cd ../../../..
update-source-version omnisharp-roslyn "${new_version//v}"
store_src="$(nix-build . -A omnisharp-roslyn.src --no-out-link)"
src="$(mktemp -d /tmp/omnisharp-roslyn-src.XXX)"
cp -rT "$store_src" "$src"
chmod -R +w "$src"
trap 'rm -r "$src"' EXIT
pushd "$src"
export DOTNET_NOLOGO=1
export DOTNET_CLI_TELEMETRY_OPTOUT=1
mkdir ./nuget_pkgs
replaceInPlace global.json '7.0.100-preview.4.22252.9' "$SDK7_VERSION"
# This is only needed for restore as we'll build for the runtime that is compiling the code in the nix build.
for project in src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj src/OmniSharp.LanguageServerProtocol/OmniSharp.LanguageServerProtocol.csproj; do
replaceInPlace $project \
'<RuntimeIdentifiers>win7-x64;win7-x86;win10-arm64</RuntimeIdentifiers>' \
'<RuntimeIdentifiers>linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>'
done
for project in src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj; do
dotnet restore "$project" \
--packages ./nuget_pkgs \
-property:PackageVersion="${new_version//v}" \
-property:AssemblyVersion="${new_version//v}".0 \
-property:FileVersion="${new_version//v}".0 \
-property:InformationalVersion="${new_version//v}" \
-property:RuntimeFrameworkVersion=6.0.0-preview.7.21317.1 \
-property:RollForward=LatestMajor
done
nuget-to-nix ./nuget_pkgs > "$deps_file"