From fe282930f4ae23b47b2cfd4217afe082169511c5 Mon Sep 17 00:00:00 2001 From: Acid Bong Date: Sat, 19 Apr 2025 12:08:38 +0300 Subject: [PATCH] rustup: remove `with lib;` --- pkgs/development/tools/rust/rustup/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/rustup/default.nix b/pkgs/development/tools/rust/rustup/default.nix index 649497629329..b18c1144a608 100644 --- a/pkgs/development/tools/rust/rustup/default.nix +++ b/pkgs/development/tools/rust/rustup/default.nix @@ -139,13 +139,15 @@ rustPlatform.buildRustPackage rec { hardening_unsupported_flags = ""; }; - meta = with lib; { + meta = { description = "Rust toolchain installer"; homepage = "https://www.rustup.rs/"; - license = with licenses; [ + license = with lib.licenses; [ asl20 # or mit ]; - maintainers = [ maintainers.mic92 ]; + maintainers = with lib.maintainers; [ + mic92 + ]; }; }