nixpkgs/pkgs/by-name/li/libmsgraph/package.nix
Bobby Rong 809b0ce8f7
libmsgraph: 0.2.2 → 0.2.3
https://gitlab.gnome.org/GNOME/msgraph/-/compare/0.2.2...0.2.3

Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
2024-10-14 20:46:05 +08:00

70 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.2.3";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/msgraph/${lib.versions.majorMinor finalAttrs.version}/msgraph-${finalAttrs.version}.tar.xz";
hash = "sha256-7ULoAMt/CgdHfNnj50TNwaJApq16uWuKh1gGJnqf3bA=";
};
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-0" "$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;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
})