summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-05-12 19:29:46 -0400
committerWinter <winter@winter.cafe>2023-05-12 19:49:14 -0400
commit15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c (patch)
tree768f18dac2875751b6b9f53632e85a23f064e7a5
parent93f1dd1e65ea5e8fe6b8c0f90cba3fe21bc9d222 (diff)
downloadnixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar.gz
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar.bz2
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar.lz
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar.xz
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.tar.zst
nixpkgs-15f699fbf924c7a0c44d6411e1fe3bfd629f4e9c.zip
rustfmt: fix warning
rustPlatform.rust has been deprecated in https://github.com/NixOS/nixpkgs/pull/230951
-rw-r--r--pkgs/development/compilers/rust/rustfmt.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/rust/rustfmt.nix b/pkgs/development/compilers/rust/rustfmt.nix
index a1e16b354cc..b53be1633d5 100644
--- a/pkgs/development/compilers/rust/rustfmt.nix
+++ b/pkgs/development/compilers/rust/rustfmt.nix
@@ -22,8 +22,8 @@ rustPlatform.buildRustPackage rec {
   # [0]: https://github.com/rust-lang/rust/blob/f77f4d55bdf9d8955d3292f709bd9830c2fdeca5/src/bootstrap/builder.rs#L1543
   # [1]: https://github.com/rust-lang/rust/blob/f77f4d55bdf9d8955d3292f709bd9830c2fdeca5/compiler/rustc_codegen_ssa/src/back/linker.rs#L323-L331
   preFixup = lib.optionalString stdenv.isDarwin ''
-    install_name_tool -add_rpath "${rustPlatform.rust.rustc}/lib" "$out/bin/rustfmt"
-    install_name_tool -add_rpath "${rustPlatform.rust.rustc}/lib" "$out/bin/git-rustfmt"
+    install_name_tool -add_rpath "${rustc}/lib" "$out/bin/rustfmt"
+    install_name_tool -add_rpath "${rustc}/lib" "$out/bin/git-rustfmt"
   '';
 
   # As of 1.0.0 and rustc 1.30 rustfmt requires a nightly compiler