clapper: 0.6.1 -> 0.8.0 (#382375)

This commit is contained in:
Aleksana 2025-02-18 11:27:41 +08:00 committed by GitHub
commit 3c63c21d49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,17 +20,18 @@
libmicrodns, libmicrodns,
gtuber, gtuber,
glib-networking, glib-networking,
libpeas2,
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "clapper"; pname = "clapper";
version = "0.6.1"; version = "0.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Rafostar"; owner = "Rafostar";
repo = "clapper"; repo = "clapper";
rev = finalAttrs.version; tag = finalAttrs.version;
hash = "sha256-IQJTnLB6FzYYPONOqBkvi89iF0U6fx/aWYvNOOJpBvc="; hash = "sha256-Yb2fWsdd8jhxkGWKanLn7CAuF4MjyQ27XTrO8ja3hfs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -59,6 +60,7 @@ stdenv.mkDerivation (finalAttrs: {
libadwaita libadwaita
libsoup_3 libsoup_3
libmicrodns libmicrodns
libpeas2
]; ];
postPatch = '' postPatch = ''
@ -72,15 +74,15 @@ stdenv.mkDerivation (finalAttrs: {
) )
''; '';
meta = with lib; { meta = {
description = "GNOME media player built using GTK4 toolkit and powered by GStreamer with OpenGL rendering"; description = "GNOME media player built using GTK4 toolkit and powered by GStreamer with OpenGL rendering";
longDescription = '' longDescription = ''
Clapper is a GNOME media player built using the GTK4 toolkit. Clapper is a GNOME media player built using the GTK4 toolkit.
The media player is using GStreamer as a media backend. The media player is using GStreamer as a media backend.
''; '';
homepage = "https://github.com/Rafostar/clapper"; homepage = "https://github.com/Rafostar/clapper";
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
maintainers = with maintainers; [ aleksana ]; maintainers = with lib.maintainers; [ aleksana ];
platforms = platforms.linux; platforms = lib.platforms.linux;
}; };
}) })