nixpkgs/pkgs/tools/misc/rockbox-utility/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, cryptopp
, libusb1
, makeWrapper
, pkg-config
, qt5
, withEspeak ? false, espeak ? null
}:
2017-10-24 11:46:49 +00:00
stdenv.mkDerivation rec {
pname = "rockbox-utility";
2020-06-19 15:49:57 +00:00
version = "1.4.1";
src = fetchurl {
url = "https://download.rockbox.org/rbutil/source/RockboxUtility-v${version}-src.tar.bz2";
hash = "sha256-PhlJ+fNY4/Qjoc72zV9WO+kNqF5bZQuwOh4EpAJwqX4=";
};
nativeBuildInputs = [
makeWrapper
pkg-config
qt5.qmake
qt5.wrapQtAppsHook
];
buildInputs = [
cryptopp
libusb1
qt5.qtbase
qt5.qttools
]
++ lib.optional withEspeak espeak;
2017-10-24 11:46:49 +00:00
postPatch = ''
sed -i rbutil/rbutilqt/rbutilqt.pro \
-e '/^lrelease.commands =/ s|$$\[QT_INSTALL_BINS\]/lrelease -silent|${lib.getDev qt5.qttools}/bin/lrelease|'
2017-10-24 11:46:49 +00:00
'';
2016-04-16 23:52:55 +00:00
preConfigure = ''
cd rbutil/rbutilqt
2020-06-19 15:49:57 +00:00
lrelease rbutilqt.pro
'';
installPhase = ''
2017-05-02 06:34:40 +00:00
runHook preInstall
install -Dm755 RockboxUtility $out/bin/rockboxutility
ln -s $out/bin/rockboxutility $out/bin/RockboxUtility
2017-05-17 19:26:11 +00:00
wrapProgram $out/bin/rockboxutility \
2021-01-15 09:19:50 +00:00
${lib.optionalString withEspeak ''
2017-05-02 06:34:40 +00:00
--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 lib; {
homepage = "https://www.rockbox.org";
description = "Open source firmware for digital music players";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres goibhniu ];
platforms = platforms.linux;
};
}