clementine: don't copy files unnecessarily

This commit is contained in:
Thomas Tuegel 2015-05-02 13:37:44 -05:00
parent c8aae45c27
commit 9d63a5beea

View File

@ -65,11 +65,8 @@ stdenv.mkDerivation {
++ stdenv.lib.optional withSpotify libspotify;
installPhase = ''
mkdir -p $out
cp -a ${wrapped}/* $out
chmod -R u+w-t $out
wrapProgram "$out/bin/${wrappedExeName}" \
mkdir -p $out/bin
makeWrapper "${unwrapped}/bin/${exeName}" "$out/bin/${exeName}" \
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
'';