isponsorblocktv: add darwin platforms

There are published osx artifacts and none of the python packages used are linux specific. Tested on OSX Sequoia with `--impure` and `NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1` and confirmed that functionality fully works.
This commit is contained in:
Murph Murphy 2025-06-07 15:14:05 -06:00 committed by GitHub
parent 1c8099284c
commit b2a84e5a6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,6 +59,6 @@ python3Packages.buildPythonApplication rec {
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ lukegb ];
mainProgram = "iSponsorBlockTV";
platforms = lib.platforms.linux;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}