mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
5d23b54a20
qmake does not support translations in resources.
56 lines
1.7 KiB
Nix
56 lines
1.7 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libusb1
|
|
, qtbase, qttools, makeWrapper, qmake
|
|
, withEspeak ? false, espeak ? null }:
|
|
|
|
let inherit (stdenv.lib) getDev; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "rockbox-utility-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.rockbox.org/rbutil/source/RockboxUtility-v${version}-src.tar.bz2";
|
|
sha256 = "0k3ycga3b0jnj13whwiip2l0gx32l50pnbh7kfima87nq65aaa5w";
|
|
};
|
|
|
|
buildInputs = [ libusb1 qtbase qttools ]
|
|
++ stdenv.lib.optional withEspeak espeak;
|
|
nativeBuildInputs = [ makeWrapper pkgconfig qmake ];
|
|
|
|
postPatch = ''
|
|
sed -i rbutil/rbutilqt/rbutilqt.pro \
|
|
-e '/^lrelease.commands =/ s|$$\[QT_INSTALL_BINS\]/lrelease -silent|${getDev qttools}/bin/lrelease|'
|
|
'';
|
|
|
|
preConfigure = ''
|
|
cd rbutil/rbutilqt
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 RockboxUtility $out/bin/rockboxutility
|
|
ln -s $out/bin/rockboxutility $out/bin/RockboxUtility
|
|
wrapProgram $out/bin/rockboxutility \
|
|
${stdenv.lib.optionalString withEspeak ''
|
|
--prefix PATH : ${espeak}/bin
|
|
''}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# `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;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open source firmware for mp3 players";
|
|
homepage = http://www.rockbox.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ goibhniu jgeerds ];
|
|
};
|
|
}
|