summary refs log tree commit diff
diff options
context:
space:
mode:
authorc74d <8573dd@gmail.com>2017-03-22 01:45:55 +0000
committerc74d <8573dd@gmail.com>2017-03-22 01:45:55 +0000
commiteb9f76911f1fee6ebd519220bc9843d3adac5ee7 (patch)
treeceff8fe3b3c389036e4e3a0faf78aaae7f052ab7
parent41e2ffa1d7d778b2fd49a16832a3c6c7371ec3cf (diff)
downloadnixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar.gz
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar.bz2
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar.lz
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar.xz
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.tar.zst
nixpkgs-eb9f76911f1fee6ebd519220bc9843d3adac5ee7.zip
rustracer: 2.0.5 -> 2.0.6
-rw-r--r--pkgs/development/tools/rust/racer/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix
index a44ba43051a..d1cb4a8cd2e 100644
--- a/pkgs/development/tools/rust/racer/default.nix
+++ b/pkgs/development/tools/rust/racer/default.nix
@@ -1,18 +1,17 @@
 { stdenv, fetchFromGitHub, rustPlatform, makeWrapper }:
 
-with rustPlatform;
-
-buildRustPackage rec {
+rustPlatform.buildRustPackage rec {
   name = "racer-${version}";
-  version = "2.0.5";
+  version = "2.0.6";
+
   src = fetchFromGitHub {
     owner = "phildawes";
     repo = "racer";
-    rev = "93eac5cd633c937a05d4138559afe6fb054c7c28";
-    sha256 = "0smp5dv0f5bymficrg0dz8h9x4lhklrz6f31fbcy0vhg8l70di2n";
+    rev = version;
+    sha256 = "09wgfrb0z2d2icfk11f1jal5p93sqjv3jzmzcgw0pgw3zvffhni3";
   };
 
-  depsSha256 = "1qq2fpjg1wfb7z2s8p4i2aw9swcpqsp9m5jmhbyvwnd281ag4z6a";
+  depsSha256 = "0mnq7dk9wz2k9jhzciknybwc471sy8f71cd15m752b5ng6v1f5kn";
 
   buildInputs = [ makeWrapper ];
 
@@ -31,7 +30,7 @@ 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;
-    license = stdenv.lib.licenses.mit;
+    license = licenses.mit;
     maintainers = with maintainers; [ jagajaga globin ];
     platforms = platforms.all;
   };