kodi 18.5 -> 18.6.

This commit is contained in:
Daniel Șerbănescu 2020-03-18 08:12:58 +01:00
parent b6ae8193ed
commit b6b89f1f0a

View file

@ -43,15 +43,15 @@ assert vdpauSupport -> libvdpau != null;
assert useWayland -> wayland != null && wayland-protocols != null && waylandpp != null && libxkbcommon != null;
let
kodiReleaseDate = "20191116";
kodiVersion = "18.5";
kodiReleaseDate = "20200301";
kodiVersion = "18.6";
rel = "Leia";
kodi_src = fetchFromGitHub {
owner = "xbmc";
repo = "xbmc";
rev = "${kodiVersion}-${rel}";
sha256 = "0pcrraj1ddzrd296br10yjnaxgb3iym74xzixcakaqhhp00f5hf6";
sha256 = "0rwymipn5hljy5xrslzmrljmj6f9wb191wi7gjw20wl6sv44d0bk";
};
cmakeProto = fetchurl {
@ -194,15 +194,6 @@ in stdenv.mkDerivation {
autoconf automake libtool # still needed for some components. Check if that is the case with 19.0
] ++ lib.optionals useWayland [ wayland-protocols ];
patches = [
# Adds missing cassert includes, fixing builds. This will be unnecessary
# after 18.6 is released (which will contain this patch)
(fetchpatch {
url = "https://github.com/xbmc/xbmc/commit/d5947e6733fd564edb68df91fd6d389d9fb82319.patch";
sha256 = "1shlbsbfba3074wdyhl42vgin6jfzl7sy3zsvxaxkpx8g7my9jn2";
})
];
cmakeFlags = [
"-Dlibdvdcss_URL=${libdvdcss.src}"
"-Dlibdvdnav_URL=${libdvdnav.src}"