Add metadata to Nix package definition for lidarr-mb-gap

- Added `meta` section to `nix/package.nix` to define the main program and provide a description for the lidarr-mb-gap application, enhancing clarity and usability for users and developers.
This commit is contained in:
Danilo Reyes
2025-11-11 11:34:41 -06:00
parent a6d2e7f7df
commit a3b7bfa0df

View File

@@ -12,5 +12,9 @@ pkgs.python3Packages.buildPythonApplication {
requests requests
python-dotenv python-dotenv
]; ];
meta = {
mainProgram = "lidarr-mb-gap";
description = "Lidarr to MusicBrainz Missing Albums Finder";
};
} }