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

25 lines
733 B
Nix
Raw Normal View History

2015-09-08 18:21:18 +00:00
{ stdenv, fetchurl, pkgconfig, glib, python, udev, libgudev }:
2014-02-08 19:16:34 +00:00
stdenv.mkDerivation rec {
2015-03-26 19:44:17 +00:00
name = "libmbim-1.12.2";
2014-02-08 19:16:34 +00:00
src = fetchurl {
url = "http://www.freedesktop.org/software/libmbim/${name}.tar.xz";
2015-03-26 19:44:17 +00:00
sha256 = "0abv0h9c3kbw4bq1b9270sg189jcjj3x3wa91bj836ynwg9m34wl";
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
'';
2015-09-08 18:21:18 +00:00
buildInputs = [ pkgconfig 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 18:21:18 +00: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;
maintainers = with maintainers; [ wkennington ];
2014-02-08 19:16:34 +00:00
};
}