about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authordywedir <dywedir@protonmail.ch>2017-07-28 00:55:26 +0300
committerRobin Gloster <mail@glob.in>2017-07-28 11:58:31 +0200
commit805467bb5a03db607145dd7aae2ef08e1c1ee746 (patch)
treec2eff460a6801d0fd54ce59a967a12ae65373ef9 /pkgs/development/tools
parent9fc4b66800c9eb79172445c0ebd2eedb4f71b107 (diff)
downloadnixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar.gz
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar.bz2
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar.lz
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar.xz
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.tar.zst
nixlib-805467bb5a03db607145dd7aae2ef08e1c1ee746.zip
rustracer: 2.0.6 -> 2.0.9
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/rust/racer/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index b79d7e0670da..89c384eb6eca 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -2,21 +2,21 @@
 
 rustPlatform.buildRustPackage rec {
   name = "racer-${version}";
-  version = "2.0.6";
+  version = "2.0.9";
 
   src = fetchFromGitHub {
-    owner = "phildawes";
+    owner = "racer-rust";
     repo = "racer";
     rev = version;
-    sha256 = "09wgfrb0z2d2icfk11f1jal5p93sqjv3jzmzcgw0pgw3zvffhni3";
+    sha256 = "06k50f2vj2w08afh3nrlhs0amcvw2i45bhfwr70sgs395xicjswp";
   };
 
-  depsSha256 = "0mnq7dk9wz2k9jhzciknybwc471sy8f71cd15m752b5ng6v1f5kn";
+  depsSha256 = "1gywnjbjl9jalbq6wkfmbczav4qbhgw2h8lyxkyppnhw9y4j0nc1";
 
   buildInputs = [ makeWrapper ];
 
   preCheck = ''
-    export RUST_SRC_PATH="${rustPlatform.rust.rustc.src}/src"
+    export RUST_SRC_PATH="${rustPlatform.rustcSrc}"
   '';
 
   doCheck = true;
@@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec {
 
   meta = with stdenv.lib; {
     description = "A utility intended to provide Rust code completion for editors and IDEs";
-    homepage = https://github.com/phildawes/racer;
+    homepage = https://github.com/racer-rust/racer;
     license = licenses.mit;
     maintainers = with maintainers; [ jagajaga globin ];
     platforms = platforms.all;