nixpkgs-suyu/pkgs/applications/video/gnome-mpv/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2017-09-04 04:29:17 +02:00
{ stdenv, fetchFromGitHub, meson, ninja
, gettext, pkgconfig, desktop_file_utils, wrapGAppsHook
2016-05-23 20:08:28 +02:00
, appstream-glib, epoxy, glib, gtk3, mpv
}:
stdenv.mkDerivation rec {
name = "gnome-mpv-${version}";
2017-09-04 04:29:17 +02:00
version = "0.13";
2016-05-23 20:08:28 +02:00
2017-09-04 04:29:17 +02:00
src = fetchFromGitHub {
owner = "gnome-mpv";
repo = "gnome-mpv";
rev = "0d73b33d60050fd32bf8fae77d831548970a0b69"; # upstream forgot to update appdata
# rev = "v${version}";
sha256 = "1cjhw3kz163iwj2japhnv354i1lr112xyyfkxw82cwy2554cfim4";
2016-05-23 20:08:28 +02:00
};
2017-09-04 04:29:17 +02:00
nativeBuildInputs = [ meson ninja appstream-glib gettext pkgconfig desktop_file_utils wrapGAppsHook ];
buildInputs = [ epoxy glib gtk3 mpv ];
2016-05-23 20:08:28 +02:00
enableParallelBuilding = true;
2017-09-04 04:29:17 +02:00
postPatch = ''
patchShebangs .
sed -i '/gtk-update-icon-cache/s/^/#/' meson_post_install.py
'';
2016-05-23 20:08:28 +02:00
doCheck = true;
2017-09-04 04:29:17 +02:00
checkPhase = "meson test";
2016-05-23 20:08:28 +02:00
meta = with stdenv.lib; {
description = "Simple GTK+ frontend for the mpv video player";
longDescription = ''
GNOME MPV interacts with mpv via the client API exported by libmpv,
allowing access to mpv's powerful playback capabilities through an
easy-to-use user interface.
'';
homepage = https://github.com/gnome-mpv/gnome-mpv;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}