mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
29 lines
625 B
Nix
29 lines
625 B
Nix
{
|
|
lib,
|
|
rel,
|
|
buildKodiBinaryAddon,
|
|
fetchFromGitHub,
|
|
libGL,
|
|
}:
|
|
buildKodiBinaryAddon rec {
|
|
pname = "pvr-vdr-vnsi";
|
|
namespace = "pvr.vdr.vnsi";
|
|
version = "21.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kodi-pvr";
|
|
repo = "pvr.vdr.vnsi";
|
|
rev = "${version}-${rel}";
|
|
sha256 = "sha256-V/ICEK006Zs4mipywAbRl8ZdezsprCgdC2WYtc/cAAY=";
|
|
};
|
|
|
|
extraBuildInputs = [ libGL ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kodi-pvr/pvr.vdr.vnsi";
|
|
description = "Kodi's VDR VNSI PVR client addon";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Only;
|
|
teams = [ teams.kodi ];
|
|
};
|
|
}
|