about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-03-26 12:44:17 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-03-26 12:44:17 -0700
commite41037ae041f0e0a4bf014204c05e3b4004a659c (patch)
treee6cfdb252744f970bd99ce393f80118503f70b4d /pkgs/development/libraries
parenta12a63fc084d5c121886983ccf9e7a0dd8c6daed (diff)
downloadnixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar.gz
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar.bz2
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar.lz
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar.xz
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.tar.zst
nixlib-e41037ae041f0e0a4bf014204c05e3b4004a659c.zip
libmbim: 1.6.0 -> 1.12.2
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libmbim/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libmbim/default.nix b/pkgs/development/libraries/libmbim/default.nix
index 8207051b2a86..d58f031f3762 100644
--- a/pkgs/development/libraries/libmbim/default.nix
+++ b/pkgs/development/libraries/libmbim/default.nix
@@ -1,23 +1,24 @@
 { stdenv, fetchurl, pkgconfig, glib, python, udev }:
 
 stdenv.mkDerivation rec {
-  name = "libmbim-1.6.0";
+  name = "libmbim-1.12.2";
 
   src = fetchurl {
     url = "http://www.freedesktop.org/software/libmbim/${name}.tar.xz";
-    sha256 = "10mh1b8jfxg6y6nhr7swbi9wx4acjgvx1if7nhrw1ppd5apvvvz0";
+    sha256 = "0abv0h9c3kbw4bq1b9270sg189jcjj3x3wa91bj836ynwg9m34wl";
   };
 
   preConfigure = ''
-    for f in build-aux/mbim-codegen/*; do
-       substituteInPlace $f --replace "/usr/bin/env python" "${python}/bin/python"
-    done
+    patchShebangs .
   '';
 
-  buildInputs = [ pkgconfig glib udev ];
+  buildInputs = [ pkgconfig glib udev python ];
 
   meta = with stdenv.lib; {
+    homepage = http://www.freedesktop.org/software/libmbim/;
     description = "talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol";
     platforms = platforms.linux;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ wkennington ];
   };
 }