yarGen: improve installPhase

This commit is contained in:
Robert Schütz 2021-04-23 08:02:53 +02:00 committed by Jonathan Ringer
parent e18a2ee062
commit 081c81209f

View file

@ -17,9 +17,7 @@ python3.pkgs.buildPythonApplication rec {
installPhase = ''
runHook preInstall
mkdir -p $out/bin
chmod +x yarGen.py
mv yarGen.py $out/bin/yargen
install -Dt "$out/bin" yarGen.py
runHook postInstall
'';