Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: be5f4980f678
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 63746f6bcf62
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 6, 2019

  1. rustracer: 2.1.22 -> 2.1.27

    Fixes failing build on master.
    danieldk committed Oct 6, 2019
    Copy the full SHA
    0e49168 View commit details
  2. Copy the full SHA
    3616454 View commit details

Commits on Oct 14, 2019

  1. Merge pull request #70506 from danieldk/racer-2.1.27

    rustracer: 2.1.22 -> 2.1.27
    Mic92 authored Oct 14, 2019
    Copy the full SHA
    63746f6 View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/development/tools/rust/racer/default.nix
11 changes: 6 additions & 5 deletions pkgs/development/tools/rust/racer/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "racer";
version = "2.1.22";
version = "2.1.27";

src = fetchFromGitHub {
owner = "racer-rust";
repo = "racer";
rev = "v${version}";
sha256 = "1n808h4jqxkvpjwmj8jgi4y5is5zvr8vn42mwb3yi13mix32cysa";
sha256 = "1ajj515ck5n0mzig77xnq1qgb2s4gf6ahgd5mab91406jvij9qf3";
};

cargoSha256 = "0njaa9vk2i9g1c6sq20b7ls97nl532rfv3is7d8dwz51nrwk6jxs";
cargoSha256 = "0ki5j5gh59c92a0w43kzljpiamv2jvyk4m2w8qldfyl5kaa40dxb";

buildInputs = [ makeWrapper ]
++ stdenv.lib.optional stdenv.isDarwin Security;
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {

RUST_SRC_PATH = rustPlatform.rustcSrc;
postInstall = ''
wrapProgram $out/bin/racer --set-default RUST_SRC_PATH $rustcSrc
wrapProgram $out/bin/racer --set-default RUST_SRC_PATH ${rustPlatform.rustcSrc}
'';

checkPhase = ''
@@ -31,7 +31,8 @@ rustPlatform.buildRustPackage rec {
--skip util::test_get_rust_src_path_not_rust_source_tree \
--skip extern --skip completes_pub_fn --skip find_crate_doc \
--skip follows_use_local_package --skip follows_use_for_reexport \
--skip follows_rand_crate --skip get_completion_in_example_dir
--skip follows_rand_crate --skip get_completion_in_example_dir \
--skip test_resolve_global_path_in_modules
'';

doInstallCheck = true;