libmbim 1.26.4 -> 1.28.2 https://repology.org/metapackage/libmbim/versions attrpath: libmbim Checking auto update branch... No auto update branch exists Old version 1.26.4" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitLab , meson , ninja , pkg-config , glib , python3 , help2man , systemd , bash-completion , withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform , gobject-introspection }: stdenv.mkDerivation rec { pname = "libmbim"; version = "1.28.2"; outputs = [ "out" "dev" "man" ]; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "mobile-broadband"; repo = "libmbim"; rev = version; hash = "sha256-EtjUaSNBT1e/eeTX4oHzQolGrisbsGKBK8Cfl3rRQTQ="; }; mesonFlags = [ "-Dudevdir=${placeholder "out"}/lib/udev" (lib.mesonBool "introspection" withIntrospection) ]; nativeBuildInputs = [ meson ninja pkg-config python3 help2man gobject-introspection ]; buildInputs = [ glib systemd bash-completion ]; doCheck = true; postPatch = '' patchShebangs \ build-aux/mbim-codegen/mbim-codegen ''; meta = with lib; { homepage = "https://www.freedesktop.org/wiki/Software/libmbim/"; description = "Library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol"; maintainers = teams.freedesktop.members; platforms = platforms.linux; license = licenses.gpl2Plus; }; }