unipicker: cleanup

+7 -5
+7 -5
pkgs/applications/misc/unipicker/default.nix
··· 17 17 ]; 18 18 19 19 preInstall = '' 20 - substituteInPlace unipicker --replace "/etc/unipickerrc" "$out/etc/unipickerrc" 21 - substituteInPlace unipickerrc --replace "/usr/local" "$out" 22 - substituteInPlace unipicker --replace "fzf" "${fzf}/bin/fzf" 23 - substituteInPlace unipickerrc --replace "fzf" "${fzf}/bin/fzf" 20 + substituteInPlace unipicker \ 21 + --replace "/etc/unipickerrc" "$out/etc/unipickerrc" \ 22 + --replace "fzf" "${fzf}/bin/fzf" 23 + substituteInPlace unipickerrc \ 24 + --replace "/usr/local" "$out" \ 25 + --replace "fzf" "${fzf}/bin/fzf" 24 26 ''; 25 27 26 28 makeFlags = [ ··· 33 35 homepage = "https://github.com/jeremija/unipicker"; 34 36 license = licenses.mit; 35 37 maintainers = with maintainers; [ kiyengar ]; 36 - platforms = with platforms; unix; 38 + platforms = platforms.unix; 37 39 }; 38 40 }