forked from mirrors/nixpkgs
clementine: don't copy files unnecessarily
This commit is contained in:
parent
c8aae45c27
commit
9d63a5beea
|
@ -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"
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue