159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
65 lines
1.2 KiB
Nix
65 lines
1.2 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.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-qSInmsGsMTZS9f2vDtWh8amQ7QaUyu0mifolUGdrs4Q=";
|
|
};
|
|
|
|
cmakeFlags = [ "-DVERSION=${version}" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qttools
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
lxqt.lxqt-build-tools_0_13
|
|
];
|
|
|
|
buildInputs = [
|
|
qt5integration
|
|
qt5platform-plugins
|
|
qtbase
|
|
qtsvg
|
|
dtkwidget
|
|
qtx11extras
|
|
libsecret
|
|
chrpath
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.deepin-terminal;
|
|
|
|
meta = {
|
|
description = "Terminal emulator with workspace, multiple windows, remote management, quake mode and other features";
|
|
mainProgram = "deepin-terminal";
|
|
homepage = "https://github.com/linuxdeepin/deepin-terminal";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = lib.teams.deepin.members;
|
|
};
|
|
}
|