111 lines
2.3 KiB
Nix
111 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
gobject-introspection,
|
|
gtk-doc,
|
|
docbook-xsl-nons,
|
|
docbook_xml_dtd_43,
|
|
help2man,
|
|
glib,
|
|
python3,
|
|
mesonEmulatorHook,
|
|
libgudev,
|
|
bash-completion,
|
|
libmbim,
|
|
libqrtr-glib,
|
|
buildPackages,
|
|
withIntrospection ?
|
|
lib.meta.availableOn stdenv.hostPlatform gobject-introspection
|
|
&& stdenv.hostPlatform.emulatorAvailable buildPackages,
|
|
withMan ? stdenv.buildPlatform.canExecute stdenv.hostPlatform,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libqmi";
|
|
version = "1.36.0";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
] ++ lib.optional withIntrospection "devdoc";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mobile-broadband";
|
|
repo = "libqmi";
|
|
rev = version;
|
|
hash = "sha256-cGNnw0vO/Hr9o/eIf6lLTsoGiEkTvZiArgO7tAc208U=";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
]
|
|
++ lib.optionals withMan [
|
|
help2man
|
|
]
|
|
++ lib.optionals withIntrospection [
|
|
gobject-introspection
|
|
gtk-doc
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_43
|
|
]
|
|
++ lib.optionals (withIntrospection && !stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
mesonEmulatorHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
bash-completion
|
|
libmbim
|
|
]
|
|
++ lib.optionals withIntrospection [
|
|
libgudev
|
|
];
|
|
|
|
propagatedBuildInputs =
|
|
[
|
|
glib
|
|
]
|
|
++ lib.optionals withIntrospection [
|
|
libqrtr-glib
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dudevdir=${placeholder "out"}/lib/udev"
|
|
(lib.mesonBool "gtk_doc" withIntrospection)
|
|
(lib.mesonBool "introspection" withIntrospection)
|
|
(lib.mesonBool "man" withMan)
|
|
(lib.mesonBool "qrtr" withIntrospection)
|
|
(lib.mesonBool "udev" withIntrospection)
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
build-aux/qmi-codegen/qmi-codegen
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://www.freedesktop.org/wiki/Software/libqmi/";
|
|
description = "Modem protocol helper library";
|
|
teams = [ lib.teams.freedesktop ];
|
|
platforms = lib.platforms.linux;
|
|
license = with lib.licenses; [
|
|
# Library
|
|
lgpl2Plus
|
|
# Tools
|
|
gpl2Plus
|
|
];
|
|
changelog = "https://gitlab.freedesktop.org/mobile-broadband/libqmi/-/blob/${version}/NEWS";
|
|
};
|
|
}
|