Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
48 lines
922 B
Nix
48 lines
922 B
Nix
{ 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.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xapp-project";
|
|
repo = "gnome-online-accounts-gtk";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-kgDeAH6Dj4+23dW649JR0XwvDqTiz5Tknsc4IfpQFWM=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|