Skip to content

Commit

Permalink
libqmi: enable introspection
Browse files Browse the repository at this point in the history
Also stop using pkg-config alias
  • Loading branch information
jtojnar committed Jun 17, 2020
1 parent adff8a2 commit a978b11
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/libraries/libqmi/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, python3, libgudev, libmbim }:
{ stdenv, fetchurl, pkg-config, gobject-introspection, glib, python3, libgudev, libmbim }:

stdenv.mkDerivation rec {
pname = "libqmi";
Expand All @@ -13,10 +13,12 @@ stdenv.mkDerivation rec {

configureFlags = [
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
"--enable-introspection"
];

nativeBuildInputs = [
pkgconfig
pkg-config
gobject-introspection
python3
];

Expand Down

0 comments on commit a978b11

Please sign in to comment.