libmbim: 1.26.4 → 1.28.2
- Autotools no longer supported. - Tarballs no longer available. https://lists.freedesktop.org/archives/libmbim-devel/2022-October/001193.html https://lists.freedesktop.org/archives/libmbim-devel/2022-October/001195.html https://lists.freedesktop.org/archives/libmbim-devel/2022-October/001196.html https://lists.freedesktop.org/archives/libmbim-devel/2022-October/001197.html https://lists.freedesktop.org/archives/libmbim-devel/2022-November/001198.html
This commit is contained in:
parent
e1e1b192c1
commit
a1e8dfcdf4
1 changed files with 25 additions and 8 deletions
|
@ -1,46 +1,63 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchurl
|
, fetchFromGitLab
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, glib
|
, glib
|
||||||
, python3
|
, python3
|
||||||
|
, help2man
|
||||||
, systemd
|
, systemd
|
||||||
|
, bash-completion
|
||||||
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libmbim";
|
pname = "libmbim";
|
||||||
version = "1.26.4";
|
version = "1.28.2";
|
||||||
|
|
||||||
outputs = [ "out" "dev" "man" ];
|
outputs = [ "out" "dev" "man" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitLab {
|
||||||
url = "https://www.freedesktop.org/software/libmbim/${pname}-${version}.tar.xz";
|
domain = "gitlab.freedesktop.org";
|
||||||
sha256 = "sha256-9ojOxMRYahdXX14ydEjOYvIADvagfJ5FiYc9SmhWitk=";
|
owner = "mobile-broadband";
|
||||||
|
repo = "libmbim";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-EtjUaSNBT1e/eeTX4oHzQolGrisbsGKBK8Cfl3rRQTQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
mesonFlags = [
|
||||||
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
|
"-Dudevdir=${placeholder "out"}/lib/udev"
|
||||||
(lib.enableFeature withIntrospection "introspection")
|
(lib.mesonBool "introspection" withIntrospection)
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
python3
|
python3
|
||||||
|
help2man
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib
|
glib
|
||||||
systemd
|
systemd
|
||||||
|
bash-completion
|
||||||
];
|
];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs \
|
||||||
|
build-aux/mbim-codegen/mbim-codegen
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://www.freedesktop.org/wiki/Software/libmbim/";
|
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";
|
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;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue