seadrive-gui: init at 3.0.18

This commit is contained in:
wenbin-liu
2025-12-08 21:30:00 +08:00
committed by dramforever
parent 411d7ebdda
commit 21d814af4f
+74
View File
@@ -0,0 +1,74 @@
{
lib,
stdenv,
fetchpatch,
nix-update-script,
fetchFromGitHub,
pkg-config,
cmake,
qt6,
libuuid,
seafile-shared,
jansson,
libsearpc,
seadrive-fuse,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "seadrive-gui";
version = "3.0.18";
src = fetchFromGitHub {
owner = "haiwen";
repo = "seadrive-gui";
rev = "v${finalAttrs.version}";
hash = "sha256-TAmLHoJmFZyGa0wMBBPBWYOOdBCiMBdVfrIBTCZ8Sig=";
};
# Fix cmake modernization warning.
# Avoid mixed use of plain signature and keyword signature
# for all seadrive-gui targets in target_link_libraries.
postPatch = ''
substituteInPlace CMakeLists.txt --replace-fail \
'CMAKE_MINIMUM_REQUIRED(VERSION 2.8.9)' \
'CMAKE_MINIMUM_REQUIRED(VERSION 3.10)'; \
substituteInPlace CMakeLists.txt --replace-fail \
'TARGET_LINK_LIBRARIES(seadrive-gui PRIVATE Qt6::DBus)' \
'TARGET_LINK_LIBRARIES(seadrive-gui Qt6::DBus)'
'';
nativeBuildInputs = [
libuuid
pkg-config
cmake
qt6.wrapQtAppsHook
qt6.qttools
];
buildInputs = [
qt6.qt5compat
seafile-shared
jansson
libsearpc
seadrive-fuse
qt6.qtwebengine
];
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ seadrive-fuse ]}"
];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/haiwen/seadrive-gui";
changelog = "https://github.com/haiwen/seadrive-gui/releases/tag/v${finalAttrs.version}";
description = "GUI part of Seafile drive";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
wenbin-liu
];
mainProgram = "seadrive-gui";
};
})