libmbim: 1.23.900 -> 1.24.0
* Enable introspection * Clean up https://lists.freedesktop.org/archives/libmbim-devel/2020-June/001105.html
This commit is contained in:
parent
9ad2c16249
commit
3abffce0d6
@ -1,23 +1,33 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib, python3, systemd, libgudev }:
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
, pkg-config
|
||||||
|
, gobject-introspection
|
||||||
|
, glib
|
||||||
|
, python3
|
||||||
|
, systemd
|
||||||
|
, libgudev
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libmbim";
|
pname = "libmbim";
|
||||||
version = "1.23.900";
|
version = "1.24.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.freedesktop.org/software/libmbim/${pname}-${version}.tar.xz";
|
url = "https://www.freedesktop.org/software/libmbim/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0ikzjs44q44cj4m786gvm575a7x61rgmav6b60n2y74pgqvj3791";
|
sha256 = "15hi1vq327drgi6h4dsi74lb7wg0sxd7mipa3irh5zgc7gn5qj9x";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" "man" ];
|
outputs = [ "out" "dev" "man" ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
|
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
|
||||||
|
"--enable-introspection"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkgconfig
|
pkg-config
|
||||||
python3
|
python3
|
||||||
|
gobject-introspection
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user