gnome-online-accounts-gtk: init at 3.50.1

https://github.com/xapp-project/gnome-online-accounts-gtk
This commit is contained in:
Bobby Rong 2024-03-26 22:25:40 +08:00 committed by Maxine Aubrey
parent 8bef75736d
commit fae132c6e3
No known key found for this signature in database
GPG Key ID: F6FE033DFCB899F7
2 changed files with 49 additions and 0 deletions

View File

@ -157,6 +157,7 @@ in
# packages
nemo-with-extensions
gnome-online-accounts-gtk
cinnamon-control-center
cinnamon-settings-daemon
libgnomekbd

View File

@ -0,0 +1,48 @@
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, pkg-config
, wrapGAppsHook4
, glib
, glib-networking
, gnome-online-accounts
, gtk4
, libadwaita
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gnome-online-accounts-gtk";
version = "3.50.1";
src = fetchFromGitHub {
owner = "xapp-project";
repo = "gnome-online-accounts-gtk";
rev = finalAttrs.version;
hash = "sha256-lirL1bsAZfuE669BdPo03M85O5eZzU/D/hfGp+LxvSo=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
wrapGAppsHook4
];
buildInputs = [
glib
glib-networking
gnome-online-accounts
gtk4
libadwaita # for goa-backend
];
meta = with lib; {
description = "Online accounts configuration utility";
homepage = "https://github.com/xapp-project/gnome-online-accounts-gtk";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.cinnamon.members;
};
})