Unverified Commit c34e551d authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

rune-languageserver: 0.13.4 -> 0.14.1 (#481643)

parents 5e195a5a 655a67ee
Loading
Loading
Loading
Loading
+20 −8
Original line number Diff line number Diff line
@@ -2,27 +2,39 @@
  lib,
  rustPlatform,
  fetchCrate,
  versionCheckHook,
  nix-update-script,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "rune-languageserver";
  version = "0.13.4";
  version = "0.14.1";

  src = fetchCrate {
    inherit pname version;
    hash = "sha256-Kw6Qh/9eQPMj4V689+7AxuJB+aCciK3FZTfcdhyZXGY=";
    inherit (finalAttrs) pname version;
    hash = "sha256-0b8XGbMQqMolOdQEMjpwHAVI3A4fXemyCowN39qY16A=";
  };

  cargoHash = "sha256-YviRACndc4r4ul72ZF3I/R/nEsIoML2Ek2xqUUE3FDQ=";
  cargoHash = "sha256-QrzOpfDpG08IUoydvSoh0qxJ0vg86391NnyEyJeZr54=";

  env = {
    RUNE_VERSION = version;
    RUNE_VERSION = finalAttrs.version;
  };

  nativeInstallCheckInputs = [
    versionCheckHook
  ];
  doInstallCheck = true;

  passthru = {
    updateScript = nix-update-script { };
  };

  meta = {
    description = "Language server for the Rune Language, an embeddable dynamic programming language for Rust";
    homepage = "https://crates.io/crates/rune-languageserver";
    changelog = "https://github.com/rune-rs/rune/releases/tag/${version}";
    downloadPage = "https://github.com/rune-rs/rune";
    changelog = "https://github.com/rune-rs/rune/releases/tag/${finalAttrs.version}";
    license = with lib.licenses; [
      asl20
      mit
@@ -30,4 +42,4 @@ rustPlatform.buildRustPackage rec {
    maintainers = [ ];
    mainProgram = "rune-languageserver";
  };
}
})