summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorVladyslav M <dywedir@pm.me>2018-10-03 01:34:16 +0300
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-03 00:34:16 +0200
commit889c72032f8595fcd7542c6032c208f6b8033db6 (patch)
treeaed1319e153edde0957c538578a6f4fb81a3d17e /pkgs/applications/video
parentb6c824682400a0bbb71a0d446ed6bd306fd8f2ee (diff)
downloadnixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar.gz
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar.bz2
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar.lz
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar.xz
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.tar.zst
nixlib-889c72032f8595fcd7542c6032c208f6b8033db6.zip
mpv: 0.29.0 -> 0.29.1 (#47689)
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/mpv/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix
index 9d843a3bfefb..62a517e80ea6 100644
--- a/pkgs/applications/video/mpv/default.nix
+++ b/pkgs/applications/video/mpv/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchpatch, fetchurl, fetchFromGitHub, makeWrapper
+{ stdenv, fetchurl, fetchFromGitHub, makeWrapper
 , docutils, perl, pkgconfig, python3, which, ffmpeg_4
 , freefont_ttf, freetype, libass, libpthreadstubs
 , lua, luasocket, libuchardet, libiconv ? null, darwin
@@ -89,22 +89,15 @@ let
   };
 in stdenv.mkDerivation rec {
   name = "mpv-${version}";
-  version = "0.29.0";
+  version = "0.29.1";
 
   src = fetchFromGitHub {
     owner = "mpv-player";
     repo  = "mpv";
     rev    = "v${version}";
-    sha256 = "0i2nl65diqsjyz28dj07h6d8gq6ix72ysfm0nhs8514hqccaihs3";
+    sha256 = "138921kx8g6qprim558xin09xximjhsj9ss8b71ifg2m6kclym8m";
   };
 
-  # FIXME: Remove this patch for building on macOS if it gets released in
-  # the future.
-  patches = optional stdenv.isDarwin (fetchpatch {
-    url = https://github.com/mpv-player/mpv/commit/dc553c8cf4349b2ab5d2a373ad2fac8bdd229ebb.patch;
-    sha256 = "0pa8vlb8rsxvd1s39c4iv7gbaqlkn3hx21a6xnpij99jdjkw3pg8";
-  });
-
   postPatch = ''
     patchShebangs ./TOOLS/
   '';