Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e26d99a7ee66
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: efe0b7c6aede
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 27, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    efe0b7c View commit details
Showing with 493 additions and 499 deletions.
  1. +3 −3 pkgs/development/dotnet-modules/python-language-server/default.nix
  2. +490 −496 pkgs/development/dotnet-modules/python-language-server/deps.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@

let deps = import ./deps.nix { inherit fetchurl; };

version = "2020-04-24";
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.
@@ -49,8 +49,8 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "microsoft";
repo = "python-language-server";
rev = "d480cd12649dcff78ed271c92c274fab60c00f2f";
sha256 = "0p2sw6w6fymdlxn8r5ndvija2l7rd77f5rddq9n71dxj1nicljh3";
rev = "838ba78e00173d639bd90f54d8610ec16b4ba3a2";
sha256 = "0nj8l1apcb67gqwy5i49v0f01fs4lvdfmmp4w2hvrpss9if62c1m";
};

buildInputs = [dotnet-sdk_3 openssl icu];
Loading