python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gnome-online-accounts / default.nix
blob5344534aec5dec3753e3547e69e7e6d385df9647
1 { stdenv
2 , lib
3 , fetchFromGitLab
4 , pkg-config
5 , vala
6 , glib
7 , meson
8 , ninja
9 , libxslt
10 , gtk3
11 , enableBackend ? stdenv.isLinux
12 , webkitgtk_4_1
13 , json-glib
14 , librest_1_0
15 , libxml2
16 , libsecret
17 , gtk-doc
18 , gobject-introspection
19 , gettext
20 , icu
21 , glib-networking
22 , libsoup_3
23 , docbook-xsl-nons
24 , docbook_xml_dtd_412
25 , gnome
26 , gcr
27 , libkrb5
28 , gvfs
29 , dbus
30 , wrapGAppsHook
33 stdenv.mkDerivation rec {
34   pname = "gnome-online-accounts";
35   version = "3.46.0";
37   outputs = [ "out" "dev" ] ++ lib.optionals enableBackend [ "man" "devdoc" ];
39   # https://gitlab.gnome.org/GNOME/gnome-online-accounts/issues/87
40   src = fetchFromGitLab {
41     domain = "gitlab.gnome.org";
42     owner = "GNOME";
43     repo = "gnome-online-accounts";
44     rev = version;
45     sha256 = "sha256-qVd55fmhY05zJ871OWc3hd1eWjYbYJuxlE/T2i3VCUA=";
46   };
48   mesonFlags = [
49     "-Dfedora=false" # not useful in NixOS or for NixOS users.
50     "-Dgoabackend=${lib.boolToString enableBackend}"
51     "-Dgtk_doc=${lib.boolToString enableBackend}"
52     "-Dman=${lib.boolToString enableBackend}"
53     "-Dmedia_server=true"
54   ];
56   nativeBuildInputs = [
57     dbus # used for checks and pkg-config to install dbus service/s
58     docbook_xml_dtd_412
59     docbook-xsl-nons
60     gettext
61     gobject-introspection
62     gtk-doc
63     libxslt
64     meson
65     ninja
66     pkg-config
67     vala
68     wrapGAppsHook
69   ];
71   buildInputs = [
72     gcr
73     glib
74     glib-networking
75     gtk3
76     gvfs # OwnCloud, Google Drive
77     icu
78     json-glib
79     libkrb5
80     librest_1_0
81     libxml2
82     libsecret
83     libsoup_3
84   ] ++ lib.optionals enableBackend [
85     webkitgtk_4_1
86   ];
88   NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
90   passthru = {
91     updateScript = gnome.updateScript {
92       versionPolicy = "odd-unstable";
93       packageName = pname;
94     };
95   };
97   meta = with lib; {
98     homepage = "https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
99     description = "Single sign-on framework for GNOME";
100     platforms = platforms.unix;
101     license = licenses.lgpl2Plus;
102     maintainers = teams.gnome.members;
103   };