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,
gtuber,
glib-networking,
libpeas2,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "clapper";
version = "0.6.1";
version = "0.8.0";
src = fetchFromGitHub {
owner = "Rafostar";
repo = "clapper";
rev = finalAttrs.version;
hash = "sha256-IQJTnLB6FzYYPONOqBkvi89iF0U6fx/aWYvNOOJpBvc=";
tag = finalAttrs.version;
hash = "sha256-Yb2fWsdd8jhxkGWKanLn7CAuF4MjyQ27XTrO8ja3hfs=";
};
nativeBuildInputs = [
@ -59,6 +60,7 @@ stdenv.mkDerivation (finalAttrs: {
libadwaita
libsoup_3
libmicrodns
libpeas2
];
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";
longDescription = ''
Clapper is a GNOME media player built using the GTK4 toolkit.
The media player is using GStreamer as a media backend.
'';
homepage = "https://github.com/Rafostar/clapper";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aleksana ];
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.linux;
};
})