82 lines
1.7 KiB
Nix
82 lines
1.7 KiB
Nix
{ config
|
|
, lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, pkg-config
|
|
, ninja
|
|
, desktop-file-utils
|
|
, makeWrapper
|
|
, shared-mime-info
|
|
, wrapGAppsHook4
|
|
, meson
|
|
, gtk4
|
|
, gst_all_1
|
|
, libGL
|
|
, libadwaita
|
|
, libsoup_3
|
|
, vala
|
|
, cmake
|
|
, libmicrodns
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "clapper";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rafostar";
|
|
repo = "clapper";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-5fD1OnVcY3ZC+QfoFqe2jV43/J36r85SpLUYF2ti7dY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
meson
|
|
cmake
|
|
ninja
|
|
makeWrapper
|
|
pkg-config
|
|
wrapGAppsHook4 # for gsettings
|
|
desktop-file-utils # for update-desktop-database
|
|
shared-mime-info # for update-mime-database
|
|
vala
|
|
];
|
|
|
|
buildInputs = [
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly
|
|
gtk4
|
|
libGL
|
|
libadwaita
|
|
libsoup_3
|
|
libmicrodns
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs --build build-aux/meson/postinstall.py
|
|
'';
|
|
|
|
# The package uses "clappersink" provided by itself
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : $out/lib/gstreamer-1.0
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A 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;
|
|
};
|
|
})
|