2020-06-19 16:49:57 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, cryptopp
|
|
|
|
, libusb1, qtbase, qttools, makeWrapper
|
|
|
|
, qmake, withEspeak ? false, espeak ? null
|
|
|
|
, qt5 }:
|
2011-04-13 09:38:13 +01:00
|
|
|
|
2017-10-24 12:46:49 +01:00
|
|
|
let inherit (stdenv.lib) getDev; in
|
|
|
|
|
2011-04-13 09:38:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rockbox-utility";
|
2020-06-19 16:49:57 +01:00
|
|
|
version = "1.4.1";
|
2011-04-13 09:38:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.rockbox.org/rbutil/source/RockboxUtility-v${version}-src.tar.bz2";
|
2020-06-19 16:49:57 +01:00
|
|
|
sha256 = "0zm9f01a810y7aq0nravbsl0vs9vargwvxnfl4iz9qsqygwlj69y";
|
2011-04-13 09:38:13 +01:00
|
|
|
};
|
|
|
|
|
2020-06-19 16:49:57 +01:00
|
|
|
buildInputs = [ cryptopp libusb1 qtbase qttools ]
|
2017-05-02 07:34:40 +01:00
|
|
|
++ stdenv.lib.optional withEspeak espeak;
|
2020-04-06 09:04:33 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig qmake qt5.wrapQtAppsHook ];
|
2011-04-13 09:38:13 +01:00
|
|
|
|
2017-10-24 12:46:49 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i rbutil/rbutilqt/rbutilqt.pro \
|
|
|
|
-e '/^lrelease.commands =/ s|$$\[QT_INSTALL_BINS\]/lrelease -silent|${getDev qttools}/bin/lrelease|'
|
|
|
|
'';
|
|
|
|
|
2016-04-17 00:52:55 +01:00
|
|
|
preConfigure = ''
|
2011-04-13 09:38:13 +01:00
|
|
|
cd rbutil/rbutilqt
|
2020-06-19 16:49:57 +01:00
|
|
|
lrelease rbutilqt.pro
|
2011-04-13 09:38:13 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-05-02 07:34:40 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
install -Dm755 RockboxUtility $out/bin/rockboxutility
|
|
|
|
ln -s $out/bin/rockboxutility $out/bin/RockboxUtility
|
2017-05-17 20:26:11 +01:00
|
|
|
wrapProgram $out/bin/rockboxutility \
|
2017-05-02 07:34:40 +01:00
|
|
|
${stdenv.lib.optionalString withEspeak ''
|
|
|
|
--prefix PATH : ${espeak}/bin
|
|
|
|
''}
|
|
|
|
|
|
|
|
runHook postInstall
|
2011-04-13 09:38:13 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-05 09:00:48 +00:00
|
|
|
# `make build/rcc/qrc_rbutilqt-lang.cpp` fails with
|
|
|
|
# RCC: Error in 'rbutilqt-lang.qrc': Cannot find file 'lang/rbutil_cs.qm'
|
|
|
|
# Do not add `lrelease rbutilqt.pro` into preConfigure, otherwise `make lrelease`
|
|
|
|
# may clobber the files read by the parallel `make build/rcc/qrc_rbutilqt-lang.cpp`.
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
2011-04-13 09:38:13 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Open source firmware for mp3 players";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.rockbox.org";
|
2011-04-13 09:38:13 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2011-04-13 09:38:13 +01:00
|
|
|
};
|
|
|
|
}
|