From b1254cb0fb8d8aa25c5e399f2109311915eb017b Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Wed, 31 Jul 2024 15:05:41 -0400 Subject: [PATCH] refactor(nix): remove `with lib;` --- nix/yazi-unwrapped.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/yazi-unwrapped.nix b/nix/yazi-unwrapped.nix index 51d9da29..c1470cfb 100644 --- a/nix/yazi-unwrapped.nix +++ b/nix/yazi-unwrapped.nix @@ -50,10 +50,10 @@ install -m644 assets/yazi.desktop $out/share/applications/ ''; - meta = with lib; { + meta = { description = "Blazing fast terminal file manager written in Rust, based on async I/O"; homepage = "https://github.com/sxyazi/yazi"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "yazi"; }; }