From 2fe1b6d614ea966a605e0532208d53323cb9facf Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Sat, 6 Jul 2024 04:18:43 -0400 Subject: [PATCH] Fix the `with` flags, because I hate those flags :) --- home/packages/nxtik/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/packages/nxtik/package.nix b/home/packages/nxtik/package.nix index d2bd006..6177826 100644 --- a/home/packages/nxtik/package.nix +++ b/home/packages/nxtik/package.nix @@ -22,11 +22,11 @@ rustPlatform.buildRustPackage { }; }; - meta = with lib; { + meta = { description = "A library and tool for parsing and outputting informatino about Nintendo Switch .tik files"; homepage = "https://github.com/jam1garner/nxtik"; - license = licenses.unfree; # TODO: Developer forgot to add a license file. - maintainers = with maintainers; [ ]; + license = lib.licenses.unfree; # TODO: Developer forgot to add a license file. + maintainers = with lib.maintainers; [ ]; mainProgram = "nxtik"; }; }