From 5f59cd75a2da4b707589473de2ea3e8aa1047ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20S=C3=A1nchez?= Date: Wed, 31 Jul 2024 15:18:55 +0100 Subject: [PATCH] style: remove overuse of `with lib;` Co-authored-by: Yohann Boniface --- pkgs/by-name/ko/kontroll/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ko/kontroll/package.nix b/pkgs/by-name/ko/kontroll/package.nix index cb3a28733cf8..ff169a1c86a0 100644 --- a/pkgs/by-name/ko/kontroll/package.nix +++ b/pkgs/by-name/ko/kontroll/package.nix @@ -20,11 +20,11 @@ rustPlatform.buildRustPackage rec { nativeBuildInputs = [ protobuf ]; - meta = with lib; { + meta = { description = "Kontroll demonstates how to control the Keymapp API, making it easy to control your ZSA keyboard from the command line and scripts"; homepage = "https://github.com/zsa/kontroll"; - license = licenses.mit; - maintainers = with maintainers; [ davsanchez ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ davsanchez ]; mainProgram = "kontroll"; }; }