Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

showtime: init at 46.3 #318197

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions pkgs/by-name/sh/showtime/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
lib,
python3Packages,
fetchFromGitLab,
appstream,
blueprint-compiler,
desktop-file-utils,
glib,
gobject-introspection,
gst_all_1,
libadwaita,
meson,
ninja,
pkg-config,
wrapGAppsHook4,
}:

python3Packages.buildPythonApplication rec {
pname = "showtime";
version = "46.3";
pyproject = false;

src = fetchFromGitLab {
group = "GNOME";
owner = "Incubator";
repo = "showtime";
rev = "refs/tags/${version}";
hash = "sha256-0qT62VoodRcrxYNTtZk+KqxzhflxFU/HPtj2u0wRSH0=";
domain = "gitlab.gnome.org";
};

nativeBuildInputs = [
appstream
blueprint-compiler
desktop-file-utils
glib # for `glib-compile-schemas`
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook4
];

buildInputs = [
gst_all_1.gstreamer
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-rs
gst_all_1.gst-plugins-ugly
libadwaita
];

dependencies = with python3Packages; [ pygobject3 ];

dontWrapGApps = true;
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];

pythonImportsCheck = [ "showtime" ];

meta = {
description = "Watch without distraction";
homepage = "https://apps.gnome.org/Showtime";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "showtime";
};
}