2015-09-08 19:21:18 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, python, udev, libgudev }:
|
2014-02-08 19:16:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-21 18:58:12 +01:00
|
|
|
name = "libmbim-1.16.2";
|
2014-02-08 19:16:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-08 06:15:11 +01:00
|
|
|
url = "https://www.freedesktop.org/software/libmbim/${name}.tar.xz";
|
2018-08-21 18:58:12 +01:00
|
|
|
sha256 = "0qmjvjbgs9m8qsaiq5arikzglgaas9hh1968bi7sy3905kp4yjgb";
|
2014-02-08 19:16:34 +00:00
|
|
|
};
|
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2015-10-13 19:29:54 +01:00
|
|
|
|
2014-02-08 19:16:34 +00:00
|
|
|
preConfigure = ''
|
2015-03-26 19:44:17 +00:00
|
|
|
patchShebangs .
|
2014-02-08 19:16:34 +00:00
|
|
|
'';
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib udev libgudev python ];
|
2014-02-08 19:16:34 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-03-26 19:44:17 +00:00
|
|
|
homepage = http://www.freedesktop.org/software/libmbim/;
|
2015-09-08 19:21:18 +01:00
|
|
|
description = "Library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol";
|
2014-02-08 19:16:34 +00:00
|
|
|
platforms = platforms.linux;
|
2015-03-26 19:44:17 +00:00
|
|
|
license = licenses.gpl2;
|
2014-02-08 19:16:34 +00:00
|
|
|
};
|
|
|
|
}
|