forked from mirrors/nixpkgs
Merge pull request #33336 from dtzWill/fix/lxterminal-nativebuildinputs
lxterminal: use nativeBuildInputs for compile-time-only deps
This commit is contained in:
commit
55dbaba66a
|
@ -16,11 +16,13 @@ stdenv.mkDerivation rec {
|
|||
"--enable-man"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
automake autoconf intltool pkgconfig gtk2 vte libxslt docbook_xml_dtd_412
|
||||
docbook_xml_xslt libxml2 findXMLCatalogs
|
||||
nativeBuildInputs = [
|
||||
automake autoconf intltool pkgconfig
|
||||
libxslt docbook_xml_dtd_412 docbook_xml_xslt libxml2 findXMLCatalogs
|
||||
];
|
||||
|
||||
buildInputs = [ gtk2 vte ];
|
||||
|
||||
patches = [
|
||||
./respect-xml-catalog-files-var.patch
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue