2017-03-21 03:11:08 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
2015-09-05 18:48:36 +02:00
|
|
|
|
2017-03-30 00:24:38 +02:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2016-03-22 17:33:06 +01:00
|
|
|
name = "rustfmt-${version}";
|
2017-03-30 00:24:38 +02:00
|
|
|
version = "0.8.1";
|
2016-03-22 17:33:06 +01:00
|
|
|
|
2015-10-18 03:36:15 +02:00
|
|
|
src = fetchFromGitHub {
|
2015-12-23 23:55:13 +01:00
|
|
|
owner = "rust-lang-nursery";
|
2015-10-18 03:36:15 +02:00
|
|
|
repo = "rustfmt";
|
2017-03-30 00:24:38 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "05rjx7i4wn3z3j8bgqsn146a9vbni6xhxaim9nq13c6dm4nrx96b";
|
2015-09-05 18:48:36 +02:00
|
|
|
};
|
|
|
|
|
2017-03-30 00:24:38 +02:00
|
|
|
depsSha256 = "1rnk33g85r1hkw9l9c52dzr4zka5kghbci9qwni3ph19rfqf0a73";
|
2015-09-05 18:48:36 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool for formatting Rust code according to style guidelines";
|
2016-11-16 12:26:59 +01:00
|
|
|
homepage = https://github.com/rust-lang-nursery/rustfmt;
|
2015-09-05 18:48:36 +02:00
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
maintainers = [ maintainers.globin ];
|
2016-07-14 11:47:18 +02:00
|
|
|
platforms = platforms.all;
|
2015-09-05 18:48:36 +02:00
|
|
|
};
|
|
|
|
}
|