2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, rustPlatform, Security }:
|
2019-08-16 10:26:51 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "rustfmt";
|
2019-08-19 13:09:15 +00:00
|
|
|
inherit (rustPlatform.rust.rustc) version src;
|
2019-08-16 10:26:51 +00:00
|
|
|
|
|
|
|
# the rust source tarball already has all the dependencies vendored, no need to fetch them again
|
|
|
|
cargoVendorDir = "vendor";
|
2020-05-12 23:28:24 +00:00
|
|
|
buildAndTestSubdir = "src/tools/rustfmt";
|
2019-08-16 10:26:51 +00:00
|
|
|
|
2019-08-19 13:23:41 +00:00
|
|
|
# changes hash of vendor directory otherwise
|
|
|
|
dontUpdateAutotoolsGnuConfigScripts = true;
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2019-08-16 10:26:51 +00:00
|
|
|
|
|
|
|
# As of 1.0.0 and rustc 1.30 rustfmt requires a nightly compiler
|
|
|
|
RUSTC_BOOTSTRAP = 1;
|
|
|
|
|
2020-07-21 17:28:39 +00:00
|
|
|
# As of rustc 1.45.0, these env vars are required to build rustfmt (due to
|
|
|
|
# https://github.com/rust-lang/rust/pull/72001)
|
|
|
|
CFG_RELEASE = "${rustPlatform.rust.rustc.version}-nightly";
|
|
|
|
CFG_RELEASE_CHANNEL = "nightly";
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2019-08-16 10:26:51 +00:00
|
|
|
description = "A tool for formatting Rust code according to style guidelines";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rust-lang-nursery/rustfmt";
|
2019-08-16 10:26:51 +00:00
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
maintainers = with maintainers; [ globin basvandijk ];
|
|
|
|
};
|
|
|
|
}
|