celluloid: 0.23 -> 0.24

This commit is contained in:
Sandro Jäckel 2022-08-21 02:47:44 +02:00
parent e85a87766a
commit b38fc30e44
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -3,10 +3,10 @@
, fetchFromGitHub , fetchFromGitHub
, appstream-glib , appstream-glib
, desktop-file-utils , desktop-file-utils
, libepoxy
, glib , glib
, gtk4 , gtk4
, wayland , libepoxy
, libadwaita
, meson , meson
, mpv , mpv
, ninja , ninja
@ -18,13 +18,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "celluloid"; pname = "celluloid";
version = "0.23"; version = "0.24";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "celluloid-player"; owner = "celluloid-player";
repo = "celluloid"; repo = "celluloid";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-YKDud/UJJx9ko5k+Oux8mUUme0MXaRMngESE14Hhxv8="; hash = "sha256-8Y/dCeoS29R1UHwmLOp0d+JNNC4JH5pLpiqfBZU+kLI=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -36,11 +36,12 @@ stdenv.mkDerivation rec {
python3 python3
wrapGAppsHook4 wrapGAppsHook4
]; ];
buildInputs = [ buildInputs = [
libepoxy
glib glib
gtk4 gtk4
wayland libadwaita
libepoxy
mpv mpv
]; ];
@ -50,6 +51,10 @@ 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"; 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";
@ -62,8 +67,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
passthru.updateScript = nix-update-script {
attrPath = pname;
};
} }