nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03 24 lines 733 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, python, udev, libgudev }: 2 3stdenv.mkDerivation rec { 4 name = "libmbim-1.12.2"; 5 6 src = fetchurl { 7 url = "http://www.freedesktop.org/software/libmbim/${name}.tar.xz"; 8 sha256 = "0abv0h9c3kbw4bq1b9270sg189jcjj3x3wa91bj836ynwg9m34wl"; 9 }; 10 11 preConfigure = '' 12 patchShebangs . 13 ''; 14 15 buildInputs = [ pkgconfig glib udev libgudev python ]; 16 17 meta = with stdenv.lib; { 18 homepage = http://www.freedesktop.org/software/libmbim/; 19 description = "Library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol"; 20 platforms = platforms.linux; 21 license = licenses.gpl2; 22 maintainers = with maintainers; [ wkennington ]; 23 }; 24}