Skip to content

Commit 8fd2f02

Browse files
committedMay 24, 2017
kodi: 17.1 -> 17.2
1 parent cf3d531 commit 8fd2f02

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎pkgs/applications/video/kodi/default.nix

+7-5
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,16 @@ let
5454
};
5555
in stdenv.mkDerivation rec {
5656
name = "kodi-${version}";
57-
version = "17.1";
57+
version = "17.2";
5858

5959
src = fetchurl {
6060
url = "https://github.com/xbmc/xbmc/archive/${version}-${rel}.tar.gz";
61-
sha256 = "1vmvrq0qdjnphw34yils2b5jnm05cmsg777hc4lwqz5mrc1kjgrh";
61+
sha256 = "1zmgw65dbdpv72xfimrh02m8sdg4cb9i3hbmqzgs8x00b9n27ndf";
6262
};
6363

6464
buildInputs = [
65-
makeWrapper libxml2 gnutls
66-
pkgconfig cmake gnumake yasm python2
67-
boost libmicrohttpd autoreconfHook
65+
libxml2 gnutls yasm python2
66+
boost libmicrohttpd
6867
gettext pcre-cpp yajl fribidi libva
6968
openssl gperf tinyxml2 taglib libssh swig jre
7069
libX11 xproto inputproto which
@@ -91,6 +90,9 @@ in stdenv.mkDerivation rec {
9190
++ lib.optional rtmpSupport rtmpdump
9291
++ lib.optional joystickSupport SDL2;
9392

93+
nativeBuildInputs = [
94+
autoreconfHook cmake gnumake makeWrapper pkgconfig
95+
];
9496

9597
dontUseCmakeConfigure = true;
9698

0 commit comments

Comments
 (0)
Please sign in to comment.