forked from mirrors/nixpkgs
Remove dependencies on stdenv' components from
xmlto'.
svn path=/nixpkgs/trunk/; revision=11049
This commit is contained in:
parent
d195542ac3
commit
f528309936
|
@ -1,6 +1,6 @@
|
|||
{ fetchurl, stdenv, flex, libxml2, libxslt
|
||||
, docbook_xml_dtd_42, docbook_xsl
|
||||
, bash, getopt, mktemp, findutils
|
||||
, glibc, bash, getopt, mktemp, findutils
|
||||
, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -12,15 +12,15 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patchPhase = ''
|
||||
substituteInPlace "xmlto.in" \
|
||||
--replace "/bin/bash" "${stdenv.bash}/bin/bash"
|
||||
--replace "/bin/bash" "${bash}/bin/bash"
|
||||
substituteInPlace "xmlto.in" \
|
||||
--replace "/usr/bin/locale" "${stdenv.glibc}/bin/locale"
|
||||
--replace "/usr/bin/locale" "${glibc}/bin/locale"
|
||||
'';
|
||||
|
||||
configureFlags = ''
|
||||
--with-mktemp=${mktemp}/bin/mktemp
|
||||
--with-find=${findutils}/bin/find
|
||||
--with-bash=${stdenv.bash}/bin/bash
|
||||
--with-bash=${bash}/bin/bash
|
||||
--with-getopt=${getopt}/bin/getopt
|
||||
'';
|
||||
|
||||
|
|
|
@ -1055,7 +1055,7 @@ rec {
|
|||
xmlto = import ../tools/typesetting/xmlto {
|
||||
inherit fetchurl stdenv flex libxml2 libxslt
|
||||
docbook_xml_dtd_42 docbook_xsl
|
||||
bash getopt mktemp findutils makeWrapper;
|
||||
glibc bash getopt mktemp findutils makeWrapper;
|
||||
};
|
||||
|
||||
xmltv = import ../tools/misc/xmltv {
|
||||
|
|
Loading…
Reference in a new issue