504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, nixosTests
|
|
, dtkwidget
|
|
, qt5integration
|
|
, qt5platform-plugins
|
|
, cmake
|
|
, qtbase
|
|
, qtsvg
|
|
, qttools
|
|
, qtx11extras
|
|
, pkg-config
|
|
, wrapQtAppsHook
|
|
, libsecret
|
|
, chrpath
|
|
, lxqt
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deepin-terminal";
|
|
version = "6.0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-QdODR4zmbMuzSVy6eJhwJHNPXkAn6oCLHq+YZEOmtIU=";
|
|
};
|
|
|
|
cmakeFlags = [ "-DVERSION=${version}" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qttools
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
lxqt.lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qt5integration
|
|
qt5platform-plugins
|
|
qtbase
|
|
qtsvg
|
|
dtkwidget
|
|
qtx11extras
|
|
libsecret
|
|
chrpath
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.deepin-terminal;
|
|
|
|
meta = with lib; {
|
|
description = "Terminal emulator with workspace, multiple windows, remote management, quake mode and other features";
|
|
homepage = "https://github.com/linuxdeepin/deepin-terminal";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.deepin.members;
|
|
};
|
|
}
|