a5e0e39cdb
This is so that the Unison wrapper can be generated with makeWrapper. * Use makeWrapper as a buildInput everywhere. * Updated BitTorrent, cvs2svn. svn path=/nixpkgs/trunk/; revision=10213
12 lines
334 B
Bash
12 lines
334 B
Bash
source $stdenv/setup
|
|
|
|
unpackPhase
|
|
mkdir -p $out
|
|
cd $name
|
|
$python/bin/python setup.py install --prefix=$out
|
|
|
|
for i in $(cd $out/bin && ls); do
|
|
wrapProgram $out/bin/$i \
|
|
--prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $out):$(toPythonPath $pysqlite):$subversion/lib/svn-python:$clearsilver/site-packages"
|
|
done
|