pixie, dust: rename pxi -> pixie-vm

see https://github.com/pixie-lang/pixie/issues/455
This commit is contained in:
Herwig Hochleitner 2016-08-19 02:31:18 +02:00
parent df2a847b6d
commit d620f80318
2 changed files with 8 additions and 2 deletions

View file

@ -63,11 +63,17 @@ let
mkdir -p $out/share $out/bin
cp pixie-src/pixie-vm $out/share/pixie-vm
cp -R pixie-src/pixie $out/share/pixie
makeWrapper $out/share/pixie-vm $out/bin/pxi \
makeWrapper $out/share/pixie-vm $out/bin/pixie-vm \
--prefix LD_LIBRARY_PATH : ${library-path} \
--prefix C_INCLUDE_PATH : ${include-path} \
--prefix LIBRARY_PATH : ${library-path} \
--prefix PATH : ${bin-path}
cat > $out/bin/pxi <<EOF
#!$shell
>&2 echo "[\$\$] WARNING: 'pxi' is a deprecated alias for 'pixie-vm', please update your scripts."
exec $out/bin/pixie-vm "\$@"
EOF
chmod +x $out/bin/pxi
'';
meta = {
description = "A clojure-like lisp, built with the pypy vm toolkit";

View file

@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ pixie ];
patches = [ ./make-paths-configurable.patch ];
configurePhase = ''
pixiePath="${pixie}/bin/pxi" \
pixiePath="${pixie}/bin/pixie-vm" \
basePath="$out/share/dust" \
substituteAll dust.in dust
chmod +x dust