From 4064b0b4a75395baf60af9759cf9767afbe66240 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 3 Jun 2024 20:21:03 +0300 Subject: [PATCH] nix: avoid `with lib;` where applicable --- nix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/default.nix b/nix/default.nix index 81cb5fa..08b6a99 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -66,10 +66,10 @@ in --prefix ANYRUN_PLUGINS : $out/lib ''; - meta = with lib; { + meta = { description = "A wayland native, highly customizable runner."; homepage = "https://github.com/Kirottu/anyrun"; - license = with licenses; [gpl3]; + license = with lib.licenses; [gpl3]; maintainers = [ { email = "neo@neoney.dev";