mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
libgsf: attempt to fix build on FreeBSD
This commit is contained in:
parent
17ae1617dc
commit
0f5e8c29d5
@ -1,5 +1,5 @@
|
||||
{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
|
||||
, python
|
||||
, python, libiconvOrEmpty
|
||||
}:
|
||||
|
||||
with { inherit (stdenv.lib) optionals; };
|
||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
buildInputs = [ gettext bzip2 zlib python ];
|
||||
|
||||
propagatedBuildInputs = [ libxml2 glib ];
|
||||
propagatedBuildInputs = [ libxml2 glib ] ++ libiconvOrEmpty;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user