about summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2017-05-25 17:03:45 -0400
committerFranz Pletz <fpletz@fnordicwalking.de>2017-05-26 01:33:55 +0200
commita8d3cb8c29859137ae3b3da2ecc06ca4945d32a3 (patch)
tree543c9688d268f0084ac3d1bd4c3a0adbfabfe7ab /pkgs/development/tools/rust
parentffb5eb3087bbed869b02c0c1bb7194e42d8c4e54 (diff)
downloadnixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar.gz
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar.bz2
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar.lz
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar.xz
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.tar.zst
nixlib-a8d3cb8c29859137ae3b3da2ecc06ca4945d32a3.zip
rustfmt: 0.8.1 -> 0.8.3
Did not bump to 0.8.4 since that doesn't build with current stable.
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/rustfmt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix
index a7164b14d3f1..3efc82a60c81 100644
--- a/pkgs/development/tools/rust/rustfmt/default.nix
+++ b/pkgs/development/tools/rust/rustfmt/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   name = "rustfmt-${version}";
-  version = "0.8.1";
+  version = "0.8.3";
 
   src = fetchFromGitHub {
     owner = "rust-lang-nursery";
     repo = "rustfmt";
-    rev = "v${version}";
-    sha256 = "05rjx7i4wn3z3j8bgqsn146a9vbni6xhxaim9nq13c6dm4nrx96b";
+    rev = "${version}";
+    sha256 = "1nh0h8mncz5vnn5hmw74f8nnh5cxdlrg67891l4dyq0p38vjhimz";
   };
 
-  depsSha256 = "1rnk33g85r1hkw9l9c52dzr4zka5kghbci9qwni3ph19rfqf0a73";
+  depsSha256 = "002d7y33a0bavd07wl7xrignmyaamnzfabdnr7a2x3zfizkfnblb";
 
   meta = with stdenv.lib; {
     description = "A tool for formatting Rust code according to style guidelines";