Files
nixpkgs/pkgs/by-name/li/libmsgraph/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

75 lines
1.4 KiB
Nix

{
stdenv,
lib,
fetchurl,
gi-docgen,
gobject-introspection,
meson,
ninja,
pkg-config,
uhttpmock_1_0,
libxml2,
glib,
gnome-online-accounts,
json-glib,
libsoup_3,
gnome,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libmsgraph";
version = "0.3.3";
outputs = [
"out"
"dev"
"devdoc"
];
src = fetchurl {
url = "mirror://gnome/sources/msgraph/${lib.versions.majorMinor finalAttrs.version}/msgraph-${finalAttrs.version}.tar.xz";
hash = "sha256-N9fhLyqZBJCuohGE8LJ+C5Feu05QlvTWYyxiBRwFQBI=";
};
nativeBuildInputs = [
gi-docgen
gobject-introspection
meson
ninja
pkg-config
];
buildInputs = [
uhttpmock_1_0
libxml2
];
propagatedBuildInputs = [
glib
gnome-online-accounts
json-glib
libsoup_3
];
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc/msgraph-1" "$devdoc"
'';
passthru = {
updateScript = gnome.updateScript {
attrPath = "libmsgraph";
packageName = "msgraph";
};
};
meta = with lib; {
description = "Library to access MS Graph API for Office 365";
homepage = "https://gitlab.gnome.org/GNOME/msgraph";
changelog = "https://gitlab.gnome.org/GNOME/msgraph/-/blob/${finalAttrs.version}/NEWS?ref_type=tags";
license = licenses.lgpl3Plus;
teams = [ teams.gnome ];
platforms = platforms.linux;
};
})