89 lines
1.8 KiB
Nix
89 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
libsForQt5,
|
|
dtkwidget,
|
|
qt5integration,
|
|
qt5platform-plugins,
|
|
dde-qt-dbus-factory,
|
|
deepin-movie-reborn,
|
|
libvlc,
|
|
gst_all_1,
|
|
gtest,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deepin-voice-note";
|
|
version = "6.0.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-GbSYXwJoNfbg+31454GjMbXRqrtk2bSZJCk18ILfAn4=";
|
|
};
|
|
|
|
patches = [ ./use_v23_dbus_interface.diff ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "/usr" "$out"
|
|
substituteInPlace src/common/audiowatcher.cpp \
|
|
--replace "/usr/share" "$out/share"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
libsForQt5.qttools
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
libsForQt5.qtbase
|
|
libsForQt5.qtsvg
|
|
dtkwidget
|
|
qt5integration
|
|
qt5platform-plugins
|
|
dde-qt-dbus-factory
|
|
deepin-movie-reborn
|
|
libsForQt5.qtmultimedia
|
|
libsForQt5.qtwebengine
|
|
libvlc
|
|
gtest
|
|
]
|
|
++ (with gst_all_1; [
|
|
gstreamer
|
|
gst-plugins-base
|
|
]);
|
|
|
|
strictDeps = true;
|
|
|
|
cmakeFlags = [ "-DVERSION=${version}" ];
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath [
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
]
|
|
}"
|
|
];
|
|
|
|
preFixup = ''
|
|
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
|
'';
|
|
|
|
meta = {
|
|
description = "Simple memo software with texts and voice recordings";
|
|
mainProgram = "deepin-voice-note";
|
|
homepage = "https://github.com/linuxdeepin/deepin-voice-note";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = lib.teams.deepin.members;
|
|
};
|
|
}
|