Skip to content

Commit

Permalink
Merge pull request #295711 from mksafavi/pkg/livi
Browse files Browse the repository at this point in the history
livi: init at 0.0.6
  • Loading branch information
Aleksanaa committed Apr 14, 2024
2 parents 797c485 + 1006275 commit 7e60fe6
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13324,6 +13324,12 @@
fingerprint = "E90C BA34 55B3 6236 740C 038F 0D94 8CE1 9CF4 9C5F";
}];
};
mksafavi = {
name = "MK Safavi";
email = "mksafavi@gmail.com";
github = "mksafavi";
githubId = 50653293;
};
mktip = {
email = "mo.issa.ok+nix@gmail.com";
github = "mktip";
Expand Down
55 changes: 55 additions & 0 deletions pkgs/by-name/li/livi/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
, gst_all_1
, wrapGAppsHook4
, appstream-glib
, gtk4
, libadwaita
, desktop-file-utils
, libGL
}:

stdenv.mkDerivation rec {
pname = "livi";
version = "0.0.6";

src = fetchFromGitLab {
owner = "guidog";
repo = "livi";
domain = "gitlab.gnome.org";
rev = "v${version}";
sha256 = "sha256-DaIbBCJT4Da5noW6Q5z1yzTZ256HNqrvdXgwSY7p/D8=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook4
appstream-glib
desktop-file-utils
];

buildInputs = [
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gtk4
libadwaita
libGL
];
strictDeps = true;

meta = with lib; {
homepage = "https://gitlab.gnome.org/guidog/livi";
description = "A small video player targeting mobile devices (also named μPlayer)";
license = licenses.gpl3Plus;
platforms = platforms.linux;
mainProgram = "livi";
maintainers = with maintainers; [ mksafavi ];
};
}

0 comments on commit 7e60fe6

Please sign in to comment.