mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
vala: attempt to fix on FreeBSD
This commit is contained in:
parent
10d7190f2a
commit
74c4e30a9c
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
|
{ stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz, libiconvOrEmpty }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
@ -10,9 +10,9 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "09i2s0dwmrk147ind2dx7nq845g12fp6fsjqrphhrr0dbi0zzgh3";
|
sha256 = "09i2s0dwmrk147ind2dx7nq845g12fp6fsjqrphhrr0dbi0zzgh3";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ yacc flex pkgconfig xz ];
|
nativeBuildInputs = [ yacc flex pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [ glib ];
|
buildInputs = [ glib ] ++ libiconvOrEmpty;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Compiler for the GObject type system";
|
description = "Compiler for the GObject type system";
|
||||||
|
|
Loading…
Reference in a new issue