about summary refs log tree commit diff
path: root/pkgs/applications/video/kodi/addons/kodi-platform/default.nix
blob: 6d458f7377d72ce0e37ae4e6184160a8f7ef4dc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchFromGitHub, cmake, kodi, libcec_platform, tinyxml }:
stdenv.mkDerivation rec {
  pname = "kodi-platform";
  version = "17.1";

  src = fetchFromGitHub {
    owner = "xbmc";
    repo = pname;
    rev = "c8188d82678fec6b784597db69a68e74ff4986b5";
    sha256 = "1r3gs3c6zczmm66qcxh9mr306clwb3p7ykzb70r3jv5jqggiz199";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ kodi libcec_platform tinyxml ];
}