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; ++ stdenv.lib.optional withSpotify libspotify;
installPhase = '' installPhase = ''
mkdir -p $out mkdir -p $out/bin
cp -a ${wrapped}/* $out makeWrapper "${unwrapped}/bin/${exeName}" "$out/bin/${exeName}" \
chmod -R u+w-t $out
wrapProgram "$out/bin/${wrappedExeName}" \
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
''; '';