From 02b20eecc2ad99ee5e3f23d2e67be40592c70f45 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Tue, 22 Mar 2016 17:33:06 +0100 Subject: [PATCH] rustfmt: 2016-02-15 -> 2016-03-22 --- pkgs/development/tools/rust/rustfmt/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/rustfmt/default.nix b/pkgs/development/tools/rust/rustfmt/default.nix index 28c88d6c15a2..55e721306cec 100644 --- a/pkgs/development/tools/rust/rustfmt/default.nix +++ b/pkgs/development/tools/rust/rustfmt/default.nix @@ -3,15 +3,17 @@ with rustPlatform; buildRustPackage rec { - name = "rustfmt-git-2016-02-15"; + name = "rustfmt-${version}"; + version = "2016-03-22"; + src = fetchFromGitHub { owner = "rust-lang-nursery"; repo = "rustfmt"; - rev = "65bc5c242de86f0651b34fd913ca338a880696e8"; - sha256 = "02rdim0y5zg1r2zkfy6kj53idlbdybf3ckardbjsvdna5idc1hpz"; + rev = "ca757183fedf8e89286372b91ca074c11d99c4f4"; + sha256 = "0ngg5m002hwwmsqy9wr50dj3l3zgwk39701wzszm3nrhz6x13dmj"; }; - depsSha256 = "1297vy5sgiq4xqdm27pa8f99qiwrl15hb2r1dydzgk7n4iqyir6c"; + depsSha256 = "0mg4z197iiwjlgqs5izacld25cr11qi3bcrqq204f0jzrnj3y8ag"; meta = with stdenv.lib; { description = "A tool for formatting Rust code according to style guidelines";