Skip to content

Commit

Permalink
dropbox: fix makeWrapper usage
Browse files Browse the repository at this point in the history
makeWrapper checks now if script is executable,
so we have to chmod first.
  • Loading branch information
Mic92 committed Aug 11, 2017
1 parent 48b2962 commit 516ba12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/networking/dropbox/default.nix
Expand Up @@ -96,10 +96,10 @@ in mkDerivation {
mkdir -p "$out/bin"
RPATH="${ldpath}:$out/${appdir}"
chmod 755 $out/${appdir}/dropbox
makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \
--prefix LD_LIBRARY_PATH : "$RPATH"
chmod 755 $out/${appdir}/dropbox
rm $out/${appdir}/wmctrl
ln -s ${wmctrl}/bin/wmctrl $out/${appdir}/wmctrl
Expand Down

0 comments on commit 516ba12

Please sign in to comment.