summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-07-09 00:06:40 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2021-07-09 00:06:40 +0200
commit8484a25b4515bb21bbf650ec9c597a62211bcec3 (patch)
treecc3902853000c0493539d5e394dccf4e10d67df0 /pkgs/development/tools/rust
parent2ed84aa0f2103851abfa88595a20b9b38344203b (diff)
downloadnixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar.gz
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar.bz2
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar.lz
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar.xz
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.tar.zst
nixpkgs-8484a25b4515bb21bbf650ec9c597a62211bcec3.zip
rustracer: 2.1.44 -> 2.1.46, fix build
Failing Hydra build: https://hydra.nixos.org/build/147238379
After the update of Rust to 1.53[1] this package broke because it's
heavily tied to the compiler version. Please note that we cannot upgrade
to the latest version (2.1.48) as this'd require unreleased features of
`rustc`.

[1] 37ac6d6e760d60d3a99eff4637398c407c68cfe8
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/racer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index c4d0d605cf6..cb9081f49e2 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "racer";
-  version = "2.1.44";
+  version = "2.1.46";
 
   src = fetchFromGitHub {
     owner = "racer-rust";
     repo = "racer";
     rev = "v${version}";
-    sha256 = "sha256-EmxJg2QDpGZ5TbMy9y6P11LdMucBdvewkRewuUzccGM=";
+    sha256 = "sha256-7h1w5Yyt5VN6+pYuTTbdM1Nrd8aDEhPLusxuIsdS+mQ=";
   };
 
-  cargoSha256 = "sha256-kKQnpEashpIwrXubuZIpU+tzxFaUjr6jaVunYPqaHnM=";
+  cargoSha256 = "sha256-fllhB+so6H36b+joW0l+NBtz3PefOKdj6C8qKQPuJpk=";
 
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = lib.optional stdenv.isDarwin Security;