tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mpv: update to 0.7.1
Mateusz Kowalczyk
11 years ago
614ea259
4fcb6154
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
mpv
default.nix
+3
-3
pkgs/applications/video/mpv/default.nix
reviewed
···
58
58
59
59
stdenv.mkDerivation rec {
60
60
name = "mpv-${version}";
61
61
-
version = "0.7.0";
61
61
+
version = "0.7.1";
62
62
63
63
src = fetchurl {
64
64
url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz";
65
65
-
sha256 = "0rz8dp44yag442gamaa2vdmf69h25gqh2bgybx89prkfh8n4hy8x";
65
65
+
sha256 = "1grnmhj7hymi77ivvyzpgykj4wwrjd7a9apm5vyz2xqrankn3hyc";
66
66
};
67
67
68
68
buildInputs = with stdenv.lib;
···
120
120
'';
121
121
homepage = http://mpv.io;
122
122
license = licenses.gpl2Plus;
123
123
-
maintainers = [ maintainers.AndersonTorres ];
123
123
+
maintainers = with stdenv.lib.maintainers; [ AndersonTorres fuuzetsu ];
124
124
platforms = platforms.linux;
125
125
};
126
126
}