mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
809b0ce8f7
https://gitlab.gnome.org/GNOME/msgraph/-/compare/0.2.2...0.2.3 Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
70 lines
1.4 KiB
Nix
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;
|
|
};
|
|
})
|