celluloid: 0.20 -> 0.21

Also, adopts from worldofpeace (in memoriam?).
This commit is contained in:
AndersonTorres 2021-05-12 09:08:50 -03:00
parent 284e715277
commit 9cb3114a54

View File

@ -1,42 +1,42 @@
{ lib, stdenv { lib
, stdenv
, fetchFromGitHub , fetchFromGitHub
, nix-update-script
, meson
, ninja
, python3
, gettext
, pkg-config
, desktop-file-utils
, wrapGAppsHook
, appstream-glib , appstream-glib
, desktop-file-utils
, epoxy , epoxy
, gettext
, glib , glib
, gtk3 , gtk3
, meson
, mpv , mpv
, ninja
, nix-update-script
, pkg-config
, python3
, wrapGAppsHook
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "celluloid"; pname = "celluloid";
version = "0.20"; version = "0.21";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "celluloid-player"; owner = "celluloid-player";
repo = "celluloid"; repo = "celluloid";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-fEZnH8EqU6CykgKINXnKChuBUlisroa97B1vjcx2cWA="; hash = "sha256-1Jeg1uqWxURGKR/Xg4j4roZ9Pg5MR7geyttdzlOU+rA=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
appstream-glib
desktop-file-utils
gettext
meson meson
ninja ninja
python3
appstream-glib
gettext
pkg-config pkg-config
desktop-file-utils python3
wrapGAppsHook wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
epoxy epoxy
glib glib
@ -50,22 +50,20 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; { meta = with lib; {
homepage = "https://github.com/celluloid-player/celluloid";
description = "Simple GTK frontend for the mpv video player"; description = "Simple GTK frontend for the mpv video player";
longDescription = '' longDescription = ''
GNOME MPV interacts with mpv via the client API exported by libmpv, Celluloid (formerly GNOME MPV) is a simple GTK+ frontend for mpv.
allowing access to mpv's powerful playback capabilities through an Celluloid interacts with mpv via the client API exported by libmpv,
easy-to-use user interface. allowing access to mpv's powerful playback capabilities.
''; '';
homepage = "https://github.com/celluloid-player/celluloid";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
passthru.updateScript = nix-update-script {
attrPath = pname;
};
} }