Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 30 lines 641 B view raw
1{ 2 lib, 3 buildKodiAddon, 4 fetchFromGitHub, 5 myconnpy, 6}: 7 8buildKodiAddon rec { 9 pname = "mediathekview"; 10 namespace = "plugin.video.mediathekview"; 11 version = "1.0.9"; 12 13 src = fetchFromGitHub { 14 owner = pname; 15 repo = namespace; 16 rev = "release-${version}"; 17 hash = "sha256-XYyocXFTiYO7Ar0TtxjpCAy2Ywtnwb8BTxdKxwDWm4Y="; 18 }; 19 20 propagatedBuildInputs = [ 21 myconnpy 22 ]; 23 24 meta = with lib; { 25 homepage = "https://github.com/mediathekview/plugin.video.mediathekview"; 26 description = "Access media libraries of German speaking broadcasting stations"; 27 license = licenses.mit; 28 teams = [ teams.kodi ]; 29 }; 30}