3
0
Fork 0
forked from mirrors/nixpkgs

rustracer: 2.1.46 -> 2.1.48, mark as broken

This commit is contained in:
figsoda 2021-11-05 12:12:53 -04:00
parent 631e658ed7
commit 46b8356455

View file

@ -1,17 +1,15 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll, Security }: { lib, rustPlatform, fetchCrate, makeWrapper, stdenv, Security }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "racer"; pname = "racer";
version = "2.1.46"; version = "2.1.48";
src = fetchFromGitHub { src = fetchCrate {
owner = "racer-rust"; inherit pname version;
repo = "racer"; sha256 = "sha256-lat5s9+AMFI3VXiWqjLESZrtq3IwOZhlt+5BhYoonfA=";
rev = "v${version}";
sha256 = "sha256-7h1w5Yyt5VN6+pYuTTbdM1Nrd8aDEhPLusxuIsdS+mQ=";
}; };
cargoSha256 = "sha256-fllhB+so6H36b+joW0l+NBtz3PefOKdj6C8qKQPuJpk="; cargoSha256 = "sha256-jGsvCmrPGVzWdx7V3J4bBK+SF2o+icORmVKuwqYxdh4=";
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optional stdenv.isDarwin Security; buildInputs = lib.optional stdenv.isDarwin Security;
@ -44,5 +42,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/racer-rust/racer"; homepage = "https://github.com/racer-rust/racer";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jagajaga ]; maintainers = with maintainers; [ jagajaga ];
# error[E0199]: implementing the trait `Step` is not unsafe
broken = true;
}; };
} }