nixpkgs/pkgs/desktops/deepin/apps/deepin-editor/default.nix
2024-09-23 11:06:15 +08:00

61 lines
1.1 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
dtkwidget,
qt5integration,
qt5platform-plugins,
dde-qt-dbus-factory,
libchardet,
libuchardet,
libiconv,
libsForQt5,
}:
stdenv.mkDerivation rec {
pname = "deepin-editor";
version = "6.5.2";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
hash = "sha256-Z3fsnjo4Pcu1e8lKvWdWBhpoOFFy0dSrI2HehRYKJ0k=";
};
nativeBuildInputs = [
cmake
pkg-config
libsForQt5.qttools
libsForQt5.wrapQtAppsHook
];
buildInputs = [
dtkwidget
qt5integration
qt5platform-plugins
libsForQt5.qtbase
libsForQt5.qtsvg
dde-qt-dbus-factory
libsForQt5.kcodecs
libsForQt5.syntax-highlighting
libchardet
libuchardet
libiconv
];
strictDeps = true;
cmakeFlags = [ "-DVERSION=${version}" ];
meta = {
description = "Desktop text editor that supports common text editing features";
homepage = "https://github.com/linuxdeepin/deepin-editor";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = lib.teams.deepin.members;
};
}