zsh: fix cross-compiling support
This commit is contained in:
parent
4e99e554b0
commit
84d2202a46
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, ncurses, pcre }:
|
{ stdenv, fetchurl, ncurses, pcre, buildPackages }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "5.7.1";
|
version = "5.7.1";
|
||||||
@ -7,7 +7,6 @@ let
|
|||||||
url = "mirror://sourceforge/zsh/zsh-${version}-doc.tar.xz";
|
url = "mirror://sourceforge/zsh/zsh-${version}-doc.tar.xz";
|
||||||
sha256 = "1d1r88n1gfdavx4zy3svl1gljrvzim17jb2r834hafg2a016flrh";
|
sha256 = "1d1r88n1gfdavx4zy3svl1gljrvzim17jb2r834hafg2a016flrh";
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -61,7 +60,11 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
EOF
|
EOF
|
||||||
$out/bin/zsh -c "zcompile $out/etc/zprofile"
|
${if stdenv.hostPlatform == stdenv.buildPlatform then ''
|
||||||
|
$out/bin/zsh -c "zcompile $out/etc/zprofile"
|
||||||
|
'' else ''
|
||||||
|
${stdenv.lib.getBin buildPackages.zsh}/bin/zsh -c "zcompile $out/etc/zprofile"
|
||||||
|
''}
|
||||||
mv $out/etc/zprofile $out/etc/zprofile_zwc_is_used
|
mv $out/etc/zprofile $out/etc/zprofile_zwc_is_used
|
||||||
'';
|
'';
|
||||||
# XXX: patch zsh to take zwc if newer _or equal_
|
# XXX: patch zsh to take zwc if newer _or equal_
|
||||||
|
Loading…
x
Reference in New Issue
Block a user