2022-08-21 13:32:41 +00:00
|
|
|
{ buildDotnetModule
|
|
|
|
, dotnetCorePackages
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
, stdenv
|
2022-09-22 12:36:57 +00:00
|
|
|
, runCommand
|
|
|
|
, expect
|
2022-08-21 13:32:41 +00:00
|
|
|
}:
|
2021-07-14 22:03:04 +00:00
|
|
|
let
|
2022-10-06 18:32:54 +00:00
|
|
|
inherit (dotnetCorePackages) sdk_6_0 runtime_6_0;
|
2022-06-26 10:26:21 +00:00
|
|
|
in
|
2022-09-22 12:36:57 +00:00
|
|
|
let finalPackage = buildDotnetModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "omnisharp-roslyn";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "1.39.6";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OmniSharp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-24 00:07:29 +00:00
|
|
|
sha256 = "6KCHZ5I5OkDaensqHO//owI/nrQkOoF60f/n3YV7jaE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
projectFile = "src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj";
|
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
useAppHost = false;
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
dotnetInstallFlags = [ "--framework net6.0" ];
|
2022-12-28 21:21:41 +00:00
|
|
|
dotnetBuildFlags = [ "--framework net6.0" "--no-self-contained" ];
|
2022-08-21 13:32:41 +00:00
|
|
|
dotnetFlags = [
|
|
|
|
# These flags are set by the cake build.
|
|
|
|
"-property:PackageVersion=${version}"
|
|
|
|
"-property:AssemblyVersion=${version}.0"
|
|
|
|
"-property:FileVersion=${version}.0"
|
|
|
|
"-property:InformationalVersion=${version}"
|
2022-10-06 18:32:54 +00:00
|
|
|
"-property:RuntimeFrameworkVersion=${runtime_6_0.version}"
|
2022-08-21 13:32:41 +00:00
|
|
|
"-property:RollForward=LatestMajor"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Relax the version requirement
|
|
|
|
substituteInPlace global.json \
|
2022-11-21 17:40:18 +00:00
|
|
|
--replace '7.0.100-rc.1.22431.12' '${sdk_6_0.version}'
|
2022-08-21 13:32:41 +00:00
|
|
|
# Patch the project files so we can compile them properly
|
|
|
|
for project in src/OmniSharp.Http.Driver/OmniSharp.Http.Driver.csproj src/OmniSharp.LanguageServerProtocol/OmniSharp.LanguageServerProtocol.csproj src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj; do
|
|
|
|
substituteInPlace $project \
|
|
|
|
--replace '<RuntimeIdentifiers>win7-x64;win7-x86;win10-arm64</RuntimeIdentifiers>' '<RuntimeIdentifiers>linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>'
|
|
|
|
done
|
2022-03-30 09:31:56 +00:00
|
|
|
'';
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
dontDotnetFixup = true; # we'll fix it ourselves
|
2023-04-12 12:48:02 +00:00
|
|
|
preFixup = ''
|
|
|
|
# We create a wrapper that will run the OmniSharp dll using the `dotnet`
|
|
|
|
# executable from PATH. Doing it this way allows it to run using newer SDK
|
|
|
|
# versions than it was build with, which allows it to properly find those SDK
|
|
|
|
# versions - OmniSharp only finds SDKs with the same version or newer as
|
|
|
|
# itself. We still provide a fallback, in case no `dotnet` is provided in
|
|
|
|
# PATH
|
|
|
|
mkdir -p "$out/bin"
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
cat << EOF > "$out/bin/OmniSharp"
|
|
|
|
#!${stdenv.shell}
|
|
|
|
export PATH="\''${PATH}:${sdk_6_0}/bin"
|
|
|
|
dotnet "$out/lib/omnisharp-roslyn/OmniSharp.dll" "\$@"
|
|
|
|
EOF
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
chmod +x "$out/bin/OmniSharp"
|
|
|
|
'';
|
2022-09-22 12:36:57 +00:00
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
passthru.tests = let
|
|
|
|
with-sdk = sdk: runCommand "with-${if sdk ? version then sdk.version else "no"}-sdk"
|
|
|
|
{ nativeBuildInputs = [ finalPackage sdk expect ]; meta.timeout = 60; } ''
|
2022-09-22 12:36:57 +00:00
|
|
|
HOME=$TMPDIR
|
|
|
|
expect <<"EOF"
|
|
|
|
spawn OmniSharp
|
|
|
|
expect_before timeout {
|
|
|
|
send_error "timeout!\n"
|
|
|
|
exit 1
|
|
|
|
}
|
2023-04-12 12:48:02 +00:00
|
|
|
expect ".NET Core SDK ${if sdk ? version then sdk.version else sdk_6_0.version}"
|
2022-09-22 12:36:57 +00:00
|
|
|
expect "{\"Event\":\"started\","
|
|
|
|
send \x03
|
|
|
|
expect eof
|
|
|
|
catch wait result
|
|
|
|
exit [lindex $result 3]
|
|
|
|
EOF
|
|
|
|
touch $out
|
|
|
|
'';
|
2023-04-12 12:48:02 +00:00
|
|
|
in {
|
|
|
|
# Make sure we can run OmniSharp with any supported SDK version, as well as without
|
|
|
|
with-net6-sdk = with-sdk sdk_6_0;
|
|
|
|
with-net7-sdk = with-sdk dotnetCorePackages.sdk_7_0;
|
|
|
|
no-sdk = with-sdk null;
|
2022-09-22 12:36:57 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "OmniSharp based on roslyn workspaces";
|
2020-05-29 06:06:01 +00:00
|
|
|
homepage = "https://github.com/OmniSharp/omnisharp-roslyn";
|
2022-06-26 10:26:21 +00:00
|
|
|
sourceProvenance = with sourceTypes; [
|
|
|
|
fromSource
|
2022-08-21 13:32:41 +00:00
|
|
|
binaryNativeCode # dependencies
|
2022-06-26 10:26:21 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2022-06-26 10:26:21 +00:00
|
|
|
maintainers = with maintainers; [ tesq0 ericdallo corngood mdarocha ];
|
|
|
|
mainProgram = "OmniSharp";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2022-09-22 12:36:57 +00:00
|
|
|
}; in finalPackage
|