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

28 lines
797 B
Nix
Raw Normal View History

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