2021-08-06 00:46:30 +01:00
|
|
|
{ lib, buildKodiAddon, fetchFromGitHub, requests, requests-cache, routing }:
|
|
|
|
|
|
|
|
buildKodiAddon rec {
|
|
|
|
pname = "steam-library";
|
|
|
|
namespace = "plugin.program.steam.library";
|
2021-10-22 01:47:00 +01:00
|
|
|
version = "0.8.1";
|
2021-08-06 00:46:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aanderse";
|
|
|
|
repo = namespace;
|
|
|
|
rev = "v${version}";
|
2021-10-22 01:47:00 +01:00
|
|
|
sha256 = "1ai8k55bamzkx7awk3dl8ksw93pan3h9b1xlylcldy7a0ddldzdg";
|
2021-08-06 00:46:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
requests
|
|
|
|
requests-cache
|
|
|
|
routing
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/aanderse/plugin.program.steam.library";
|
|
|
|
description = "View your entire Steam library right from Kodi";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = teams.kodi.members;
|
|
|
|
};
|
|
|
|
}
|