gnome-online-accounts: move from gnome3
This commit is contained in:
parent
4a558194cb
commit
fac090c8dd
@ -30,9 +30,9 @@ with lib;
|
||||
|
||||
config = mkIf config.services.gnome3.gnome-online-accounts.enable {
|
||||
|
||||
environment.systemPackages = [ pkgs.gnome3.gnome-online-accounts ];
|
||||
environment.systemPackages = [ pkgs.gnome-online-accounts ];
|
||||
|
||||
services.dbus.packages = [ pkgs.gnome3.gnome-online-accounts ];
|
||||
services.dbus.packages = [ pkgs.gnome-online-accounts ];
|
||||
|
||||
};
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitLab, substituteAll, meson, ninja, pkgconfig, vala_0_40, gettext
|
||||
, gnome3, libnotify, itstool, glib, gtk3, libxml2
|
||||
, gnome3, libnotify, itstool, glib, gtk3, libxml2, gnome-online-accounts
|
||||
, coreutils, libpeas, libsecret, pcre, libxkbcommon, wrapGAppsHook
|
||||
, libpthreadstubs, libXdmcp, epoxy, at-spi2-core, dbus, libgpgerror
|
||||
, appstream-glib, desktop-file-utils, duplicity
|
||||
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
libnotify libpeas glib gtk3 libsecret
|
||||
pcre libxkbcommon libpthreadstubs libXdmcp epoxy gnome3.nautilus
|
||||
at-spi2-core dbus gnome3.gnome-online-accounts libgpgerror
|
||||
at-spi2-core dbus gnome-online-accounts libgpgerror
|
||||
];
|
||||
|
||||
propagatedUserEnvPkgs = [ duplicity ];
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, vala, gettext, python3
|
||||
, appstream-glib, desktop-file-utils, wrapGAppsHook
|
||||
, appstream-glib, desktop-file-utils, wrapGAppsHook, gnome-online-accounts
|
||||
, gtk3, libgee, libpeas, librest, webkitgtk, gsettings-desktop-schemas, hicolor-icon-theme
|
||||
, curl, glib, gnome3, gst_all_1, json-glib, libnotify, libsecret, sqlite, gumbo, libxml2
|
||||
}:
|
||||
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
curl glib json-glib libnotify libsecret sqlite gumbo gtk3
|
||||
libgee libpeas gnome3.libsoup librest webkitgtk gsettings-desktop-schemas
|
||||
gnome3.gnome-online-accounts
|
||||
gnome-online-accounts
|
||||
hicolor-icon-theme # for setup hook
|
||||
] ++ (with gst_all_1; [
|
||||
gstreamer gst-plugins-base gst-plugins-good
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ stdenv, meson, ninja, gettext, fetchurl, pkgconfig
|
||||
, wrapGAppsHook, itstool, desktop-file-utils, python3
|
||||
, glib, gtk3, evolution-data-server
|
||||
, glib, gtk3, evolution-data-server, gnome-online-accounts
|
||||
, libuuid, webkitgtk, zeitgeist
|
||||
, gnome3, libxml2, gsettings-desktop-schemas }:
|
||||
|
||||
@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
glib gtk3 libuuid webkitgtk gnome3.tracker
|
||||
gnome3.gnome-online-accounts zeitgeist
|
||||
gnome-online-accounts zeitgeist
|
||||
gsettings-desktop-schemas
|
||||
evolution-data-server
|
||||
gnome3.adwaita-icon-theme
|
||||
|
@ -113,8 +113,6 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
|
||||
libgnome-keyring = callPackage ./core/libgnome-keyring { };
|
||||
|
||||
gnome-online-accounts = callPackage ./core/gnome-online-accounts { };
|
||||
|
||||
gnome-online-miners = callPackage ./core/gnome-online-miners { };
|
||||
|
||||
gnome-remote-desktop = callPackage ./core/gnome-remote-desktop { };
|
||||
@ -391,6 +389,7 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
clutter clutter-gst clutter-gtk cogl gtk-vnc libdazzle libgda libgit2-glib libgxps libgdata libgepub libcroco libpeas libgee geocode-glib libgweather librest libzapojit libmediaart gfbgraph gexiv2 folks totem-pl-parser gcr gsound libgnomekbd vte vte_290 vte-ng gnome-menus gdl;
|
||||
inherit (pkgs) gsettings-desktop-schemas; # added 2019-04-16
|
||||
inherit (pkgs) gnome-video-effects; # added 2019-08-19
|
||||
inherit (pkgs) gnome-online-accounts; # added 2019-08-23
|
||||
|
||||
defaultIconTheme = adwaita-icon-theme;
|
||||
gtk = gtk3;
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, librest
|
||||
{ stdenv, fetchurl, pkgconfig, glib, librest, gnome-online-accounts
|
||||
, gnome3, libsoup, json-glib, gobject-introspection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig gobject-introspection ];
|
||||
buildInputs = [ glib gnome3.gnome-online-accounts ];
|
||||
buildInputs = [ glib gnome-online-accounts ];
|
||||
propagatedBuildInputs = [ libsoup json-glib librest ];
|
||||
|
||||
configureFlags = [ "--enable-introspection" ];
|
||||
|
@ -10,6 +10,7 @@
|
||||
, glib
|
||||
, json-glib
|
||||
, gcr
|
||||
, gnome-online-accounts
|
||||
, gobject-introspection
|
||||
, liboauth
|
||||
, gnome3
|
||||
@ -70,7 +71,7 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gnome3.gnome-online-accounts
|
||||
gnome-online-accounts
|
||||
json-glib
|
||||
];
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, glib, intltool, json-glib, librest, libsoup, gnome3, gobject-introspection }:
|
||||
{ stdenv, fetchurl, pkgconfig, glib, intltool, json-glib, librest, libsoup, gnome3, gnome-online-accounts, gobject-introspection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libzapojit";
|
||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool gobject-introspection ];
|
||||
propagatedBuildInputs = [ glib json-glib librest libsoup gnome3.gnome-online-accounts ]; # zapojit-0.0.pc
|
||||
propagatedBuildInputs = [ glib json-glib librest libsoup gnome-online-accounts ]; # zapojit-0.0.pc
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
|
@ -9501,6 +9501,8 @@ in
|
||||
|
||||
gnome-latex = callPackage ../applications/editors/gnome-latex/default.nix { };
|
||||
|
||||
gnome-online-accounts = callPackage ../development/libraries/gnome-online-accounts { };
|
||||
|
||||
gnome-video-effects = callPackage ../development/libraries/gnome-video-effects { };
|
||||
|
||||
gnum4 = callPackage ../development/tools/misc/gnum4 { };
|
||||
@ -18630,7 +18632,7 @@ in
|
||||
gnome-mpv = callPackage ../applications/video/gnome-mpv { };
|
||||
|
||||
gnome-recipes = callPackage ../applications/misc/gnome-recipes {
|
||||
inherit (gnome3) gnome-online-accounts gnome-autoar;
|
||||
inherit (gnome3) gnome-autoar;
|
||||
};
|
||||
|
||||
gollum = callPackage ../applications/misc/gollum { };
|
||||
|
Loading…
Reference in New Issue
Block a user