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: f7968dff7d6d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3e39e058ece5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 3, 2019

  1. racerd: 2019-03-20 -> 2019-09-02

    Jonathan Ringer committed Oct 3, 2019
    Copy the full SHA
    02795b4 View commit details
  2. Merge pull request #70313 from jonringer/bump-racerd

    racerd: 2019-03-20 -> unstable-2019-09-02
    marsam authored Oct 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3e39e05 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/rust/racerd/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/rust/racerd/default.nix
Original file line number Diff line number Diff line change
@@ -4,20 +4,20 @@ with rustPlatform;

buildRustPackage rec {
pname = "racerd";
version = "2019-03-20";
version = "unstable-2019-09-02";
src = fetchFromGitHub {
owner = "jwilm";
repo = "racerd";
rev = "6f74488e58e42314a36ff000bae796fe54c1bdd1";
sha256 = "1lg7j2plxpn5l65jxhsm99vmy08ljdb666hm0y1nnmmzalrakrg1";
rev = "e3d380b9a1d3f3b67286d60465746bc89fea9098";
sha256 = "13jqdvjk4savcl03mrn2vzgdsd7vxv2racqbyavrxp2cm9h6cjln";
};

# a nightly compiler is required unless we use this cheat code.
RUSTC_BOOTSTRAP=1;

doCheck = false;

cargoSha256 = "15894qr0kpp5kivx0p71zmmfhfh8in0ydkvfirxh2r12x0r2jhdd";
cargoSha256 = "07130587drrdkrk7aqb8pl8i3p485qr6xh1m86630ydlnb9z6s6i";

buildInputs = [ makeWrapper ]
++ stdenv.lib.optional stdenv.isDarwin Security;