udisks2: add gobjectIntrospection to nativeBuildInputs

authored by Johannes Frankenau and committed by Jan Tojnar 2cc5ac22 92f5b39a

+8 -2
+8 -2
pkgs/os-specific/linux/udisks/2-default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, intltool, gnused 2 2 , expat, acl, systemd, glib, libatasmart, polkit 3 3 , libxslt, docbook_xsl, utillinux, mdadm, libgudev 4 + , gobjectIntrospection 4 5 }: 5 6 6 7 stdenv.mkDerivation rec { ··· 11 12 sha256 = "0spl155k0g2l2hvqf8xyjv08i68gfyhzpjva6cwlzxx0bz4gbify"; 12 13 }; 13 14 14 - outputs = [ "out" "man" ]; 15 + outputs = [ "out" "man" "dev" ]; 15 16 16 17 patches = [ ./force-path.patch ]; 17 18 ··· 28 29 --replace " sed " " ${gnused}/bin/sed " 29 30 ''; 30 31 31 - nativeBuildInputs = [ pkgconfig intltool ]; 32 + nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ]; 32 33 33 34 buildInputs = [ libxslt docbook_xsl libgudev expat acl systemd glib libatasmart polkit ]; 34 35 ··· 36 37 "--localstatedir=/var" 37 38 "--with-systemdsystemunitdir=$(out)/etc/systemd/system" 38 39 "--with-udevdir=$(out)/lib/udev" 40 + ]; 41 + 42 + makeFlags = [ 43 + "INTROSPECTION_GIRDIR=$(dev)/share/gir-1.0" 44 + "INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0" 39 45 ]; 40 46 41 47 meta = {