wips of many gnome packages

This commit is contained in:
2024-12-21 20:05:07 -06:00
parent 6754437195
commit b90636dc63
6 changed files with 225 additions and 0 deletions

36
pkgs_wip/girens.nix Normal file
View File

@@ -0,0 +1,36 @@
{
lib,
stdenv,
fetchFromGitLab,
meson,
ninja,
gettext,
}:
stdenv.mkDerivation rec {
pname = "girens";
version = "2.0.6";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "tijder";
repo = "girens";
rev = "v${version}";
hash = "sha256-uCMg+vz+DAm1S3Z+kIhZ1TCPibtEcwpLT+FB9SuOqBY=";
};
nativeBuildInputs = [
meson
ninja
gettext
];
meta = {
description = "Girens is a Plex GTK client for playing movies, TV shows and music from your Plex library";
homepage = "https://gitlab.gnome.org/tijder/girens";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ];
mainProgram = "girens";
platforms = lib.platforms.all;
};
}