vala: attempt to fix on FreeBSD

This commit is contained in:
Vladimír Čunát 2013-04-13 23:30:26 +02:00
parent 10d7190f2a
commit 74c4e30a9c

@ -1,4 +1,4 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
{ stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz, libiconvOrEmpty }:
stdenv.mkDerivation rec {
@ -10,9 +10,9 @@ stdenv.mkDerivation rec {
sha256 = "09i2s0dwmrk147ind2dx7nq845g12fp6fsjqrphhrr0dbi0zzgh3";
};
nativeBuildInputs = [ yacc flex pkgconfig xz ];
nativeBuildInputs = [ yacc flex pkgconfig ];
buildInputs = [ glib ];
buildInputs = [ glib ] ++ libiconvOrEmpty;
meta = {
description = "Compiler for the GObject type system";