mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
enable gobjectintrospection for some libs
This commit is contained in:
parent
a3716328e6
commit
b4d1d88e42
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, intltool, pkgconfig, glib }:
|
||||
{ stdenv, fetchurl, intltool, pkgconfig, glib, gobjectIntrospection }:
|
||||
let
|
||||
version = "3.10.1";
|
||||
in
|
||||
|
@ -10,9 +10,11 @@ stdenv.mkDerivation {
|
|||
sha256 = "0wcacs1vk3pld8wvrwq7fdrm11i56nrajkrp6j1da6jc4yx0m5a6";
|
||||
};
|
||||
|
||||
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
||||
|
||||
preBuild = "patchShebangs ./scripts";
|
||||
|
||||
buildInputs=[ intltool pkgconfig glib ];
|
||||
buildInputs = [ intltool pkgconfig glib gobjectIntrospection ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.gnome.org";
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, dbus_glib, glib, python, pkgconfig, libxslt }:
|
||||
{ stdenv, fetchurl, dbus_glib, glib, python, pkgconfig, libxslt
|
||||
, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "telepathy-glib-0.22.0";
|
||||
|
@ -8,7 +9,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0mqrq2azw70rm50vy21acfnzn8mmh0w7dxh87mwr1lyk0jn1n232";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [dbus_glib glib python];
|
||||
propagatedBuildInputs = [dbus_glib glib python gobjectIntrospection];
|
||||
|
||||
buildInputs = [pkgconfig libxslt];
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib, xz
|
||||
, udev, libnl, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables
|
||||
, libgcrypt, dnsmasq, avahi, bind, perl, bluez5, substituteAll }:
|
||||
, libgcrypt, dnsmasq, avahi, bind, perl, bluez5, substituteAll
|
||||
, gobjectIntrospection }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "network-manager-${version}";
|
||||
|
@ -34,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||
"--with-kernel-firmware-dir=/run/current-system/firmware"
|
||||
"--with-session-tracking=systemd" ];
|
||||
|
||||
buildInputs = [ wirelesstools udev libnl libuuid polkit ppp xz bluez5 ];
|
||||
buildInputs = [ wirelesstools udev libnl libuuid polkit ppp xz bluez5 gobjectIntrospection ];
|
||||
|
||||
propagatedBuildInputs = [ dbus_glib gnutls libgcrypt ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue