mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
kodi: 14.2 -> 15.0
This commit is contained in:
parent
606d34e45a
commit
323fed4284
1 changed files with 7 additions and 7 deletions
|
@ -37,18 +37,18 @@ assert cecSupport -> libcec != null;
|
||||||
assert rtmpSupport -> rtmpdump != null;
|
assert rtmpSupport -> rtmpdump != null;
|
||||||
|
|
||||||
let
|
let
|
||||||
rel = "Helix";
|
rel = "Isengard";
|
||||||
ffmpeg_2_4_6 = fetchurl {
|
ffmpeg_2_6_3 = fetchurl {
|
||||||
url = "https://github.com/xbmc/FFmpeg/archive/2.4.6-${rel}.tar.gz";
|
url = "https://github.com/xbmc/FFmpeg/archive/2.6.3-${rel}.tar.gz";
|
||||||
sha256 = "1kxp2z2zgcbplm5398zrfgwcfacfzvbg9y9wwrmm8vgwfmj32wh8";
|
sha256 = "129nwrj9i758vz9xakpp68sm1l7z4in0krq6ayyqnpsnm54r9xlc";
|
||||||
};
|
};
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "kodi-" + version;
|
name = "kodi-" + version;
|
||||||
version = "14.2";
|
version = "15.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/xbmc/xbmc/archive/${version}-${rel}.tar.gz";
|
url = "https://github.com/xbmc/xbmc/archive/${version}-${rel}.tar.gz";
|
||||||
sha256 = "1x37l8db6xrvdw933p804lnwvkcm4vdb9gm5i6vmz4ha8f88bjyr";
|
sha256 = "1zqdmqffjfr5219cvpbvq9v1z5p5pzi2m9xs9lzk4jz7rxrs3nr7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -86,7 +86,7 @@ in stdenv.mkDerivation rec {
|
||||||
--replace 'usr/share/zoneinfo' 'etc/zoneinfo'
|
--replace 'usr/share/zoneinfo' 'etc/zoneinfo'
|
||||||
substituteInPlace tools/depends/target/ffmpeg/autobuild.sh \
|
substituteInPlace tools/depends/target/ffmpeg/autobuild.sh \
|
||||||
--replace "/bin/bash" "${bash}/bin/bash -ex"
|
--replace "/bin/bash" "${bash}/bin/bash -ex"
|
||||||
cp ${ffmpeg_2_4_6} tools/depends/target/ffmpeg/ffmpeg-2.4.6-${rel}.tar.gz
|
cp ${ffmpeg_2_6_3} tools/depends/target/ffmpeg/ffmpeg-2.6.3-${rel}.tar.gz
|
||||||
'';
|
'';
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
|
Loading…
Reference in a new issue