lol

keybinder3: fix cross

Artturin 83f01989 34e8a6de

+15 -4
+15 -4
pkgs/development/libraries/keybinder3/default.nix
··· 13 13 sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r"; 14 14 }; 15 15 16 - nativeBuildInputs = [ autoconf automake libtool pkg-config ]; 16 + strictDeps = true; 17 + nativeBuildInputs = [ 18 + autoconf 19 + automake 20 + libtool 21 + pkg-config 22 + gnome.gnome-common 23 + gtk-doc 24 + gobject-introspection 25 + ]; 17 26 buildInputs = [ 18 - gnome.gnome-common gtk-doc gtk3 19 - libX11 libXext libXrender gobject-introspection 27 + gtk3 libX11 libXext libXrender 20 28 ]; 21 29 22 30 preConfigure = '' 23 - ./autogen.sh --prefix="$out" 31 + # NOCONFIGURE fixes 'If you meant to cross compile, use `--host'.' 32 + NOCONFIGURE=1 ./autogen.sh --prefix="$out" 33 + substituteInPlace ./configure \ 34 + --replace "dummy pkg-config" 'dummy ''${ac_tool_prefix}pkg-config' 24 35 ''; 25 36 26 37 meta = with lib; {