forked from mirrors/nixpkgs
avahi: fix cross
This commit is contained in:
parent
c33ca7c5ce
commit
65a5313de5
|
@ -1,5 +1,5 @@
|
|||
{ fetchurl, fetchpatch, stdenv, pkgconfig, libdaemon, dbus, perlPackages
|
||||
, expat, gettext, intltool, glib, libiconv
|
||||
, expat, gettext, intltool, glib, libiconv, writeShellScriptBin
|
||||
, gtk3Support ? false, gtk3 ? null
|
||||
, qt4 ? null
|
||||
, qt4Support ? false
|
||||
|
@ -9,6 +9,11 @@
|
|||
|
||||
assert qt4Support -> qt4 != null;
|
||||
|
||||
let
|
||||
# despite the configure script claiming it supports $PKG_CONFIG, it doesnt respect it
|
||||
pkgconfig-helper = writeShellScriptBin "pkg-config" ''exec $PKG_CONFIG "$@"'';
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "avahi${stdenv.lib.optionalString withLibdnssdCompat "-compat"}-${version}";
|
||||
version = "0.7";
|
||||
|
@ -35,7 +40,7 @@ stdenv.mkDerivation rec {
|
|||
propagatedBuildInputs =
|
||||
stdenv.lib.optionals withPython (with python.pkgs; [ python pygobject3 dbus-python ]);
|
||||
|
||||
nativeBuildInputs = [ pkgconfig gettext intltool glib ];
|
||||
nativeBuildInputs = [ pkgconfig pkgconfig-helper gettext intltool glib ];
|
||||
|
||||
configureFlags =
|
||||
[ "--disable-qt3" "--disable-gdbm" "--disable-mono"
|
||||
|
|
Loading…
Reference in a new issue