about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/racer
diff options
context:
space:
mode:
authorJordan Woehr <jordanwoehr@gmail.com>2015-03-01 12:31:57 -0700
committerJordan Woehr <jordanwoehr@gmail.com>2015-03-02 12:40:55 -0700
commit5821e91bd1270dcab53337e5bc1c6ad4c79e0f23 (patch)
tree8bbbe8f592e5f5b1cb1dbdbdaa6eb1f254ed963e /pkgs/development/tools/rust/racer
parentb7b54b053976852e9d1743d9d91df1882d4e3b62 (diff)
downloadnixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar.gz
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar.bz2
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar.lz
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar.xz
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.tar.zst
nixlib-5821e91bd1270dcab53337e5bc1c6ad4c79e0f23.zip
Restructure rustc derivations for ease of updating.
Update racerRust to use new rustcMaster and upgrade cargoSnapshot so racer builds.
Diffstat (limited to 'pkgs/development/tools/rust/racer')
-rw-r--r--pkgs/development/tools/rust/racer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index d07f7fd28e93..75c099877617 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   #TODO add emacs support
-  name = "racer-git-2015-01-20";
+  name = "racer-git-2015-02-28";
   src = fetchgit {
     url = https://github.com/phildawes/racer;
-    rev = "599aa524ea949ec5f9f0be0375dbb1df9cb852ae";
-    sha256 = "1kasm7vffn176wr072m1dmqg1rb3wqai9yisxf8mia62548pdx88";
+    rev = "2e1d718fae21431de4493c238196466e9d4996bc";
+    sha256 = "0lvp494kg2hlbbdrwxmmxkyhjw53y9wjdml9z817pwj3fwmrjsx0";
   };
 
   buildInputs = [ rustc cargo makeWrapper ];