2018-08-12 01:42:24 +02:00
|
|
|
{ stdenv, fetchurl, glib, udev, libgudev, polkit, ppp, gettext, pkgconfig
|
2019-03-15 18:15:24 +01:00
|
|
|
, libmbim, libqmi, systemd, vala, gobject-introspection, dbus }:
|
2012-01-04 10:05:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-15 18:15:24 +01:00
|
|
|
pname = "modem-manager";
|
2019-11-02 13:57:44 +01:00
|
|
|
version = "1.10.6";
|
2012-01-04 10:05:22 +01:00
|
|
|
|
2018-11-05 00:43:47 +01:00
|
|
|
package = "ModemManager";
|
2014-02-08 20:16:34 +01:00
|
|
|
src = fetchurl {
|
2018-11-05 00:43:47 +01:00
|
|
|
url = "https://www.freedesktop.org/software/${package}/${package}-${version}.tar.xz";
|
2019-11-02 13:57:44 +01:00
|
|
|
sha256 = "15n9sd6ymxvw7hidc9pw81j89acwi5cjfhj220a68mi1h8vsfb1w";
|
2012-01-04 10:05:22 +01:00
|
|
|
};
|
|
|
|
|
2019-03-15 18:15:24 +01:00
|
|
|
nativeBuildInputs = [ vala gobject-introspection gettext pkgconfig ];
|
2012-01-04 10:05:22 +01:00
|
|
|
|
2018-08-12 01:42:24 +02:00
|
|
|
buildInputs = [ glib udev libgudev polkit ppp libmbim libqmi systemd ];
|
2018-03-23 10:04:24 +01:00
|
|
|
|
2014-02-08 20:16:34 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-polkit"
|
2019-09-03 18:38:57 +02:00
|
|
|
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
|
2019-09-07 22:26:56 +02:00
|
|
|
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-09-03 18:38:57 +02:00
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
2015-03-26 21:12:50 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2019-03-15 18:15:24 +01:00
|
|
|
"--with-systemd-suspend-resume"
|
|
|
|
"--with-systemd-journal"
|
2014-02-08 20:16:34 +01:00
|
|
|
];
|
2012-01-04 10:05:22 +01:00
|
|
|
|
2019-03-15 18:15:24 +01:00
|
|
|
preCheck = ''
|
|
|
|
export G_TEST_DBUS_DAEMON="${dbus.daemon}/bin/dbus-daemon"
|
2015-03-26 21:12:50 +01:00
|
|
|
'';
|
|
|
|
|
2019-03-15 18:15:24 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-03-13 22:37:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-01-04 10:05:22 +01:00
|
|
|
description = "WWAN modem manager, part of NetworkManager";
|
2018-03-13 22:37:13 +01:00
|
|
|
homepage = https://www.freedesktop.org/wiki/Software/ModemManager/;
|
|
|
|
license = licenses.gpl2Plus;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = [ ];
|
2018-03-13 22:37:13 +01:00
|
|
|
platforms = platforms.linux;
|
2012-01-04 10:05:22 +01:00
|
|
|
};
|
|
|
|
}
|