biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / formula1 / default.nix
blob0d374dc65be1bbcdbc615f5cefc028e2ccf8f386
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, requests }:
3 buildKodiAddon rec {
4   pname = "formula1";
5   namespace = "plugin.video.formula1";
6   version = "2.0.2";
8   src = fetchzip {
9     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
10     sha256 = "sha256-aClAgkJKvixeKzrwgEsfDhPXiFv9+ULLmb8c9QTaUgM=";
11   };
13   propagatedBuildInputs = [
14     requests
15   ];
17   passthru = {
18     updateScript = addonUpdateScript {
19       attrPath = "kodi.packages.formula1";
20     };
21   };
23   meta = with lib; {
24     homepage = "https://github.com/jaylinski/kodi-addon-formula1";
25     description = "Videos from the Formula 1 website";
26     license = licenses.mit;
27     maintainers = teams.kodi.members;
28   };