From 8484a25b4515bb21bbf650ec9c597a62211bcec3 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 9 Jul 2021 00:06:40 +0200 Subject: [PATCH] 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 --- pkgs/development/tools/rust/racer/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix index c4d0d605cf65..cb9081f49e21 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;