about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorajs124 <ajs124@users.noreply.github.com>2022-04-17 23:46:26 +0100
committerGitHub <noreply@github.com>2022-04-17 23:46:26 +0100
commitacea379a3ad4b2ec940aee4ce9ce374322bf9a3d (patch)
tree7543eea51643ca99959914973338d1d4276c624d /pkgs
parent353ba1b6e161e415b2c329c8cb70f85ba7a28bc8 (diff)
parenta43148735774e2af98ef04520b8dd890b3685ad3 (diff)
Merge pull request #167485 from 8573/8573/pkg/update/rustracer/2.2.1
rustracer: 2.1.48 -> 2.2.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/racer/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index f6717b36b203b..3fd4f76838454 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -2,14 +2,14 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "racer";
-  version = "2.1.48";
+  version = "2.2.1";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-lat5s9+AMFI3VXiWqjLESZrtq3IwOZhlt+5BhYoonfA=";
+    sha256 = "sha256-uAVtJwOyhe1lPz+MUUFCgHJPVGuIk/lNUkQWiNdOZ5Y=";
   };
 
-  cargoSha256 = "sha256-jGsvCmrPGVzWdx7V3J4bBK+SF2o+icORmVKuwqYxdh4=";
+  cargoSha256 = "sha256-U2mI1y6t8CwxW/iPcPzxAafu61GNm/XLCKVGuyybV/4=";
 
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = lib.optional stdenv.isDarwin Security;
@@ -32,6 +32,10 @@ rustPlatform.buildRustPackage rec {
     "--skip test_resolve_global_path_in_modules"
   ];
 
+  # [2022-04-06] Its test suite contains two function calls with the
+  # wrong number of arguments, breaking its build.
+  doCheck = false;
+
   doInstallCheck = true;
   installCheckPhase = ''
     $out/bin/racer --version
@@ -42,7 +46,5 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/racer-rust/racer";
     license = licenses.mit;
     maintainers = with maintainers; [ jagajaga ];
-    # error[E0199]: implementing the trait `Step` is not unsafe
-    broken = true;
   };
 }