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
1 changed files with 5 additions and 3 deletions
|
@ -16,11 +16,13 @@ stdenv.mkDerivation rec {
|
||||||
"--enable-man"
|
"--enable-man"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
nativeBuildInputs = [
|
||||||
automake autoconf intltool pkgconfig gtk2 vte libxslt docbook_xml_dtd_412
|
automake autoconf intltool pkgconfig
|
||||||
docbook_xml_xslt libxml2 findXMLCatalogs
|
libxslt docbook_xml_dtd_412 docbook_xml_xslt libxml2 findXMLCatalogs
|
||||||
];
|
];
|
||||||
|
|
||||||
|
buildInputs = [ gtk2 vte ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./respect-xml-catalog-files-var.patch
|
./respect-xml-catalog-files-var.patch
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Reference in a new issue