Fix the `with` flags, because I hate those flags :)

This commit is contained in:
Whovian NTSN 2024-07-06 04:18:43 -04:00
parent f20e3ac64a
commit 2fe1b6d614
1 changed files with 3 additions and 3 deletions

View File

@ -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"; description = "A library and tool for parsing and outputting informatino about Nintendo Switch .tik files";
homepage = "https://github.com/jam1garner/nxtik"; homepage = "https://github.com/jam1garner/nxtik";
license = licenses.unfree; # TODO: Developer forgot to add a license file. license = lib.licenses.unfree; # TODO: Developer forgot to add a license file.
maintainers = with maintainers; [ ]; maintainers = with lib.maintainers; [ ];
mainProgram = "nxtik"; mainProgram = "nxtik";
}; };
} }