Skip to content

Commit

Permalink
showtime: init at 0-unstable-2024-06-07
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Jun 8, 2024
1 parent 0c11926 commit 97fbc54
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pkgs/by-name/sh/showtime/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
lib,
python3Packages,
fetchFromGitLab,
blueprint-compiler,
gobject-introspection,
libadwaita,
meson,
ninja,
pkg-config,
wrapGAppsHook,
}:
python3Packages.buildPythonApplication {
pname = "showtime";
version = "0-unstable-2024-06-07";

src = fetchFromGitLab {
owner = "GNOME/Incubator";
repo = "showtime";
rev = "9f3a96fe536a403e0d9f6557027b985a2eca18d6";
hash = "sha256-r72GlbCXhiNN910TLbETt013wd8rumO8qkopd4W2Br4=";
domain = "gitlab.gnome.org";
};

nativeBuildInputs = [
blueprint-compiler
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook
];

buildInputs = [ libadwaita ];

dependencies = with python3Packages; [ pygobject3 ];

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

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

0 comments on commit 97fbc54

Please sign in to comment.