tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rustracer: 2.1.46 -> 2.1.48, mark as broken
figsoda
4 years ago
46b83564
631e658e
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
rust
racer
default.nix
+8
-8
pkgs/development/tools/rust/racer/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll, Security }:
1
1
+
{ lib, rustPlatform, fetchCrate, makeWrapper, stdenv, Security }:
2
2
3
3
rustPlatform.buildRustPackage rec {
4
4
pname = "racer";
5
5
-
version = "2.1.46";
5
5
+
version = "2.1.48";
6
6
7
7
-
src = fetchFromGitHub {
8
8
-
owner = "racer-rust";
9
9
-
repo = "racer";
10
10
-
rev = "v${version}";
11
11
-
sha256 = "sha256-7h1w5Yyt5VN6+pYuTTbdM1Nrd8aDEhPLusxuIsdS+mQ=";
7
7
+
src = fetchCrate {
8
8
+
inherit pname version;
9
9
+
sha256 = "sha256-lat5s9+AMFI3VXiWqjLESZrtq3IwOZhlt+5BhYoonfA=";
12
10
};
13
11
14
14
-
cargoSha256 = "sha256-fllhB+so6H36b+joW0l+NBtz3PefOKdj6C8qKQPuJpk=";
12
12
+
cargoSha256 = "sha256-jGsvCmrPGVzWdx7V3J4bBK+SF2o+icORmVKuwqYxdh4=";
15
13
16
14
nativeBuildInputs = [ makeWrapper ];
17
15
buildInputs = lib.optional stdenv.isDarwin Security;
···
44
42
homepage = "https://github.com/racer-rust/racer";
45
43
license = licenses.mit;
46
44
maintainers = with maintainers; [ jagajaga ];
45
45
+
# error[E0199]: implementing the trait `Step` is not unsafe
46
46
+
broken = true;
47
47
};
48
48
}