nixpkgs-suyu/pkgs/development/libraries/libmbim/default.nix

27 lines
770 B
Nix
Raw Normal View History

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