lol

Merge pull request #21789 from goetzst/mpv

mpv: 0.22.0 -> 0.23.0

authored by

Jörg Thalheim and committed by
GitHub
d2d7740f dcfda198

+20 -4
+4 -4
pkgs/applications/video/mpv/default.nix
··· 1 1 { stdenv, fetchurl, fetchFromGitHub, makeWrapper 2 - , docutils, perl, pkgconfig, python3, which, ffmpeg 2 + , docutils, perl, pkgconfig, python3, which, ffmpeg_3_2 3 3 , freefont_ttf, freetype, libass, libpthreadstubs 4 4 , lua, lua5_sockets, libuchardet, libiconv ? null, darwin 5 5 ··· 79 79 }; 80 80 in stdenv.mkDerivation rec { 81 81 name = "mpv-${version}"; 82 - version = "0.22.0"; 82 + version = "0.23.0"; 83 83 84 84 src = fetchFromGitHub { 85 85 owner = "mpv-player"; 86 86 repo = "mpv"; 87 87 rev = "v${version}"; 88 - sha256 = "0mv8fs2zxp6pvpi5xdrpvvqcaa5f0c83jdfi0pfqnwbpkz1kb9s6"; 88 + sha256 = "02k8p4z1mwxxlg9spwwrlcciia80kyrpp09hpl60g22h85jj1ng9"; 89 89 }; 90 90 91 91 patchPhase = '' ··· 112 112 nativeBuildInputs = [ docutils makeWrapper perl pkgconfig python3 which ]; 113 113 114 114 buildInputs = [ 115 - ffmpeg freetype libass libpthreadstubs 115 + ffmpeg_3_2 freetype libass libpthreadstubs 116 116 lua lua5_sockets libuchardet 117 117 ] ++ optional alsaSupport alsaLib 118 118 ++ optional xvSupport libXv
+13
pkgs/development/libraries/ffmpeg/3.2.nix
··· 1 + { stdenv, callPackage 2 + # Darwin frameworks 3 + , Cocoa, CoreMedia 4 + , ... 5 + }@args: 6 + 7 + callPackage ./generic.nix (args // rec { 8 + version = "${branch}.2"; 9 + branch = "3.2"; 10 + sha256 = "0srn788i4k5827sl8vmds6133vjy9ygsmgzwn40n3l5qs5b9l4hb"; 11 + darwinFrameworks = [ Cocoa CoreMedia ]; 12 + patches = stdenv.lib.optional stdenv.isDarwin ./sdk_detection.patch; 13 + })
+3
pkgs/top-level/all-packages.nix
··· 7091 7091 ffmpeg_3_1 = callPackage ../development/libraries/ffmpeg/3.1.nix { 7092 7092 inherit (darwin.apple_sdk.frameworks) Cocoa CoreMedia; 7093 7093 }; 7094 + ffmpeg_3_2 = callPackage ../development/libraries/ffmpeg/3.2.nix { 7095 + inherit (darwin.apple_sdk.frameworks) Cocoa CoreMedia; 7096 + }; 7094 7097 # Aliases 7095 7098 ffmpeg_0 = ffmpeg_0_10; 7096 7099 ffmpeg_1 = ffmpeg_1_2;