fsautocomplete 0.66.1 -> 0.67.0 https://github.com/fsharp/FsAutoComplete/releases attrpath: fsautocomplete Checking auto update branch... No auto update branch exists Old version 0.66.1" not present in master derivation file with contents: { lib, buildDotnetModule, fetchFromGitHub, dotnetCorePackages, stdenv }: let inherit (dotnetCorePackages) combinePackages sdk_6_0 sdk_7_0; in buildDotnetModule rec { pname = "fsautocomplete"; version = "0.67.0"; src = fetchFromGitHub { owner = "fsharp"; repo = "FsAutoComplete"; rev = "v${version}"; sha256 = "sha256-txHkQDLyIejsEZGpfIGqeiJ8EUePZq1btxfd+EZD4aM="; }; nugetDeps = ./deps.nix; postPatch = '' rm global.json substituteInPlace src/FsAutoComplete/FsAutoComplete.fsproj \ --replace TargetFrameworks TargetFramework \ ''; dotnet-sdk = combinePackages [ sdk_7_0 sdk_6_0 ]; dotnet-runtime = sdk_6_0; projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj"; executables = [ "fsautocomplete" ]; useDotnetFromEnv = true; meta = with lib; { description = "The FsAutoComplete project (FSAC) provides a backend service for rich editing or intellisense features for editors."; homepage = "https://github.com/fsharp/FsAutoComplete"; changelog = "https://github.com/fsharp/FsAutoComplete/releases/tag/v${version}"; license = licenses.asl20; platforms = platforms.linux; maintainers = with maintainers; [ gbtb mdarocha ]; }; }