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
-
{ lib, stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll, Security }:
2
3
rustPlatform.buildRustPackage rec {
4
pname = "racer";
5
-
version = "2.1.46";
6
7
-
src = fetchFromGitHub {
8
-
owner = "racer-rust";
9
-
repo = "racer";
10
-
rev = "v${version}";
11
-
sha256 = "sha256-7h1w5Yyt5VN6+pYuTTbdM1Nrd8aDEhPLusxuIsdS+mQ=";
12
};
13
14
-
cargoSha256 = "sha256-fllhB+so6H36b+joW0l+NBtz3PefOKdj6C8qKQPuJpk=";
15
16
nativeBuildInputs = [ makeWrapper ];
17
buildInputs = lib.optional stdenv.isDarwin Security;
···
44
homepage = "https://github.com/racer-rust/racer";
45
license = licenses.mit;
46
maintainers = with maintainers; [ jagajaga ];
0
0
47
};
48
}
···
1
+
{ lib, rustPlatform, fetchCrate, makeWrapper, stdenv, Security }:
2
3
rustPlatform.buildRustPackage rec {
4
pname = "racer";
5
+
version = "2.1.48";
6
7
+
src = fetchCrate {
8
+
inherit pname version;
9
+
sha256 = "sha256-lat5s9+AMFI3VXiWqjLESZrtq3IwOZhlt+5BhYoonfA=";
0
0
10
};
11
12
+
cargoSha256 = "sha256-jGsvCmrPGVzWdx7V3J4bBK+SF2o+icORmVKuwqYxdh4=";
13
14
nativeBuildInputs = [ makeWrapper ];
15
buildInputs = lib.optional stdenv.isDarwin Security;
···
42
homepage = "https://github.com/racer-rust/racer";
43
license = licenses.mit;
44
maintainers = with maintainers; [ jagajaga ];
45
+
# error[E0199]: implementing the trait `Step` is not unsafe
46
+
broken = true;
47
};
48
}