mpv: 0.18.1 -> 0.19.0
This commit is contained in:
parent
62c72e9af7
commit
4f91c270d2
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, docutils, makeWrapper, perl, pkgconfig, python, which
|
{ stdenv, fetchurl, fetchFromGitHub, docutils, makeWrapper, perl, pkgconfig
|
||||||
, ffmpeg, freefont_ttf, freetype, libass, libpthreadstubs, lua, lua5_sockets
|
, python, which, ffmpeg, freefont_ttf, freetype, libass, libpthreadstubs
|
||||||
|
, lua, lua5_sockets
|
||||||
, libuchardet, rubberband
|
, libuchardet, rubberband
|
||||||
, x11Support ? true, libX11 ? null, libXext ? null, mesa ? null, libXxf86vm ? null
|
, x11Support ? true, libX11 ? null, libXext ? null, mesa ? null, libXxf86vm ? null
|
||||||
, xineramaSupport ? true, libXinerama ? null
|
, xineramaSupport ? true, libXinerama ? null
|
||||||
@ -54,19 +55,21 @@ let
|
|||||||
# for purity reasons this behavior should be avoided.
|
# for purity reasons this behavior should be avoided.
|
||||||
wafVersion = "1.8.12";
|
wafVersion = "1.8.12";
|
||||||
waf = fetchurl {
|
waf = fetchurl {
|
||||||
urls = [ "http://ftp.waf.io/pub/release/waf-${wafVersion}"
|
urls = [ "http://waf.io/waf-${wafVersion}"
|
||||||
"http://waf.io/waf-${wafVersion}" ];
|
"http://www.freehackers.org/~tnagy/release/waf-${wafVersion}" ];
|
||||||
sha256 = "12y9c352zwliw0zk9jm2lhynsjcf5jy0k1qch1c1av8hnbm2pgq1";
|
sha256 = "12y9c352zwliw0zk9jm2lhynsjcf5jy0k1qch1c1av8hnbm2pgq1";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mpv-${version}";
|
name = "mpv-${version}";
|
||||||
version = "0.18.1";
|
version = "0.19.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
|
owner = "mpv-player";
|
||||||
sha256 = "0ab3lkvx1j06x7qlp9m4r4zk28dr7z8ki3w4kfgkpm2axizxa4z4";
|
repo = "mpv";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "14rbglrcplhkf16ik4fbcv7k27lz6h4glfayr12ylh98srmsscqa";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user