xmlto: Remove explicit dependency on Glibc.
svn path=/nixpkgs/trunk/; revision=17261
This commit is contained in:
parent
1885909e93
commit
ee720ec763
@ -1,6 +1,6 @@
|
||||
{ fetchurl, stdenv, flex, libxml2, libxslt
|
||||
, docbook_xml_dtd_42, docbook_xsl, w3m
|
||||
, glibc, bash, getopt, mktemp, findutils
|
||||
, bash, getopt, mktemp, findutils
|
||||
, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace "xmlto.in" \
|
||||
--replace "/bin/bash" "${bash}/bin/bash"
|
||||
substituteInPlace "xmlto.in" \
|
||||
--replace "/usr/bin/locale" "${glibc}/bin/locale"
|
||||
--replace "/usr/bin/locale" "$(type -P locale)"
|
||||
'';
|
||||
|
||||
configureFlags = ''
|
||||
@ -48,5 +48,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
license = "GPLv2+";
|
||||
homepage = http://cyberelk.net/tim/software/xmlto/;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -1607,7 +1607,7 @@ let
|
||||
xmlto = import ../tools/typesetting/xmlto {
|
||||
inherit fetchurl stdenv flex libxml2 libxslt
|
||||
docbook_xml_dtd_42 docbook_xsl w3m
|
||||
glibc bash getopt mktemp findutils makeWrapper;
|
||||
bash getopt mktemp findutils makeWrapper;
|
||||
};
|
||||
|
||||
xmltv = import ../tools/misc/xmltv {
|
||||
|
Loading…
Reference in New Issue
Block a user