mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 21:25:30 +03:00
rockbox-utility: 1.4.1 -> 1.5.1
This commit is contained in:
parent
9ba8353cf8
commit
a753044e5f
2 changed files with 44 additions and 26 deletions
|
@ -7,23 +7,24 @@
|
||||||
makeWrapper,
|
makeWrapper,
|
||||||
pkg-config,
|
pkg-config,
|
||||||
qt5,
|
qt5,
|
||||||
|
cmake,
|
||||||
withEspeak ? false,
|
withEspeak ? false,
|
||||||
espeak ? null,
|
espeak ? null,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rockbox-utility";
|
pname = "rockbox-utility";
|
||||||
version = "1.4.1";
|
version = "1.5.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.rockbox.org/rbutil/source/RockboxUtility-v${version}-src.tar.bz2";
|
url = "https://download.rockbox.org/rbutil/source/RockboxUtility-v${version}-src.tar.bz2";
|
||||||
hash = "sha256-PhlJ+fNY4/Qjoc72zV9WO+kNqF5bZQuwOh4EpAJwqX4=";
|
hash = "sha256-guNO11a0d30RexPEAAQGIgV9W17zgTjZ/LNz/oUn4HM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
pkg-config
|
pkg-config
|
||||||
qt5.qmake
|
cmake
|
||||||
qt5.wrapQtAppsHook
|
qt5.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -31,30 +32,20 @@ stdenv.mkDerivation rec {
|
||||||
cryptopp
|
cryptopp
|
||||||
libusb1
|
libusb1
|
||||||
qt5.qtbase
|
qt5.qtbase
|
||||||
|
qt5.qtmultimedia
|
||||||
qt5.qttools
|
qt5.qttools
|
||||||
] ++ lib.optional withEspeak espeak;
|
] ++ lib.optional withEspeak espeak;
|
||||||
|
|
||||||
postPatch = ''
|
cmakeDir = "../utils";
|
||||||
sed -i rbutil/rbutilqt/rbutilqt.pro \
|
|
||||||
-e '/^lrelease.commands =/ s|$$\[QT_INSTALL_BINS\]/lrelease -silent|${lib.getDev qt5.qttools}/bin/lrelease|'
|
|
||||||
'';
|
|
||||||
|
|
||||||
preConfigure = ''
|
patches = [
|
||||||
cd rbutil/rbutilqt
|
./rockbox-utility-fix-cmake.patch
|
||||||
lrelease rbutilqt.pro
|
];
|
||||||
'';
|
|
||||||
|
|
||||||
# Workaround build failure on -fno-common toolchains like upstream
|
|
||||||
# gcc-10. Otherwise build fails as:
|
|
||||||
# ld: libmkimxboot.a(elf.c.o):utils/imxtools/sbtools/misc.h:43: multiple definition of `g_nr_keys';
|
|
||||||
# libmkimxboot.a(mkimxboot.c.o):utils/imxtools/sbtools/misc.h:43: first defined here
|
|
||||||
# TODO: try to remove with 1.5.1 update.
|
|
||||||
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
install -Dm755 RockboxUtility $out/bin/rockboxutility
|
install -Dm755 rbutilqt/RockboxUtility $out/bin/rockboxutility
|
||||||
ln -s $out/bin/rockboxutility $out/bin/RockboxUtility
|
ln -s $out/bin/rockboxutility $out/bin/RockboxUtility
|
||||||
wrapProgram $out/bin/rockboxutility \
|
wrapProgram $out/bin/rockboxutility \
|
||||||
${lib.optionalString withEspeak ''
|
${lib.optionalString withEspeak ''
|
||||||
|
@ -64,17 +55,11 @@ stdenv.mkDerivation rec {
|
||||||
runHook postInstall
|
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; {
|
meta = with lib; {
|
||||||
homepage = "https://www.rockbox.org";
|
homepage = "https://www.rockbox.org";
|
||||||
description = "Open source firmware for digital music players";
|
description = "Open source firmware for digital music players";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ozkutuk ];
|
||||||
mainProgram = "RockboxUtility";
|
mainProgram = "RockboxUtility";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt
|
||||||
|
index 55e5b79..0934905 100644
|
||||||
|
--- a/utils/CMakeLists.txt
|
||||||
|
+++ b/utils/CMakeLists.txt
|
||||||
|
@@ -358,22 +358,6 @@ add_library(rbtomcrypt
|
||||||
|
)
|
||||||
|
target_include_directories(rbtomcrypt PUBLIC ${CMAKE_CURRENT_LIST_DIR}/tomcrypt/src/headers)
|
||||||
|
|
||||||
|
-add_library(skin_parser
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_buffer.c
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_buffer.h
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_debug.c
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_debug.h
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_parser.c
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_parser.h
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_scan.c
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/skin_scan.h
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/symbols.h
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/tag_table.c
|
||||||
|
- ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser/tag_table.h
|
||||||
|
- )
|
||||||
|
-target_include_directories(skin_parser PUBLIC ${CMAKE_CURRENT_LIST_DIR}/../lib/skin_parser)
|
||||||
|
-target_compile_definitions(skin_parser PUBLIC __PCTOOL__)
|
||||||
|
-
|
||||||
|
# target will always be build. File is only updated when contents change.
|
||||||
|
add_custom_target(gitversion.h
|
||||||
|
COMMENT "Updating gitversion.h"
|
||||||
|
@@ -391,5 +375,3 @@ target_include_directories(gitversion INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/gitv
|
||||||
|
include(${CMAKE_CURRENT_LIST_DIR}/cmake/deploy.cmake)
|
||||||
|
include(${CMAKE_CURRENT_LIST_DIR}/cmake/QtTest.cmake)
|
||||||
|
add_subdirectory(rbutilqt)
|
||||||
|
-add_subdirectory(themeeditor)
|
||||||
|
-
|
Loading…
Add table
Add a link
Reference in a new issue