4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
105 lines
2.6 KiB
Nix
105 lines
2.6 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, makeWrapper
|
|
, dotnet-sdk_3
|
|
, openssl
|
|
, icu
|
|
, patchelf
|
|
, Nuget
|
|
}:
|
|
|
|
let deps = import ./deps.nix { inherit fetchurl; };
|
|
|
|
version = "2020-06-19";
|
|
|
|
# Build the nuget source needed for the later build all by itself
|
|
# since it's a time-consuming step that only depends on ./deps.nix.
|
|
# This makes it easier to experiment with the main build.
|
|
nugetSource = stdenv.mkDerivation {
|
|
pname = "python-language-server-nuget-deps";
|
|
inherit version;
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ Nuget ];
|
|
|
|
buildPhase = ''
|
|
export HOME=$(mktemp -d)
|
|
|
|
mkdir -p $out/lib
|
|
|
|
# disable default-source so nuget does not try to download from online-repo
|
|
nuget sources Disable -Name "nuget.org"
|
|
# add all dependencies to the source
|
|
for package in ${toString deps}; do
|
|
nuget add $package -Source $out/lib
|
|
done
|
|
'';
|
|
|
|
dontInstall = true;
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "python-language-server";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "python-language-server";
|
|
rev = "838ba78e00173d639bd90f54d8610ec16b4ba3a2";
|
|
sha256 = "0nj8l1apcb67gqwy5i49v0f01fs4lvdfmmp4w2hvrpss9if62c1m";
|
|
};
|
|
|
|
buildInputs = [dotnet-sdk_3 openssl icu];
|
|
|
|
nativeBuildInputs = [
|
|
Nuget
|
|
makeWrapper
|
|
patchelf
|
|
];
|
|
|
|
buildPhase = ''
|
|
mkdir home
|
|
export HOME=$(mktemp -d)
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
|
|
|
|
pushd src
|
|
nuget sources Disable -Name "nuget.org"
|
|
dotnet restore --source ${nugetSource}/lib -r linux-x64
|
|
popd
|
|
|
|
pushd src/LanguageServer/Impl
|
|
dotnet publish --no-restore -c Release -r linux-x64
|
|
popd
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r output/bin/Release/linux-x64/publish $out/lib
|
|
|
|
mkdir $out/bin
|
|
makeWrapper $out/lib/Microsoft.Python.LanguageServer $out/bin/python-language-server
|
|
'';
|
|
|
|
postFixup = ''
|
|
patchelf --set-rpath ${icu}/lib $out/lib/System.Globalization.Native.so
|
|
patchelf --set-rpath ${openssl.out}/lib $out/lib/System.Security.Cryptography.Native.OpenSsl.so
|
|
'';
|
|
|
|
# If we don't disable stripping, the executable fails to start with an error about being unable
|
|
# to find some of the packaged DLLs.
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Language Server for Python";
|
|
homepage = "https://github.com/microsoft/python-language-server";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ thomasjm ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|