2019-06-16 12:59:06 -07:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, ninja, vala,
|
2018-11-27 09:23:56 -08:00
|
|
|
gettext, at-spi2-core, dbus, epoxy, expect, gtk3, json-glib,
|
|
|
|
libXdmcp, libgee, libpthreadstubs, librsvg, libsecret, libtasn1,
|
|
|
|
libxcb, libxkbcommon, p11-kit, pcre, vte, wnck, libselinux,
|
|
|
|
libsepol, utillinux, deepin-menu, deepin-shortcut-viewer, deepin }:
|
2017-04-09 02:44:34 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-10-30 15:17:45 -07:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
pname = "deepin-terminal";
|
2019-05-04 04:42:00 -07:00
|
|
|
version = "3.2.2.1";
|
2017-04-09 02:44:34 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxdeepin";
|
|
|
|
repo = "deepin-terminal";
|
|
|
|
rev = version;
|
2019-05-04 04:42:00 -07:00
|
|
|
sha256 = "08bhdd9q4aqy5yjbpqy918j63c3b2rrdqdkxh3fk258n1fm72gmw";
|
2017-04-09 02:44:34 -07:00
|
|
|
};
|
|
|
|
|
2017-12-13 03:31:14 -08:00
|
|
|
nativeBuildInputs = [
|
2018-09-04 04:45:16 -07:00
|
|
|
pkgconfig
|
|
|
|
cmake
|
|
|
|
ninja
|
2018-10-30 17:16:20 -07:00
|
|
|
vala
|
2018-09-04 04:45:16 -07:00
|
|
|
gettext
|
2018-11-27 09:23:56 -08:00
|
|
|
libselinux libsepol utillinux # required by gio
|
|
|
|
deepin.setupHook
|
2017-12-13 03:31:14 -08:00
|
|
|
];
|
2018-08-31 11:54:39 -07:00
|
|
|
|
2018-09-04 04:45:16 -07:00
|
|
|
buildInputs = [
|
2018-10-30 17:16:20 -07:00
|
|
|
at-spi2-core
|
|
|
|
dbus
|
|
|
|
deepin-menu
|
|
|
|
deepin-shortcut-viewer
|
|
|
|
epoxy
|
|
|
|
expect
|
2018-09-04 04:45:16 -07:00
|
|
|
gtk3
|
2018-10-30 17:16:20 -07:00
|
|
|
json-glib
|
|
|
|
libXdmcp
|
2018-09-04 04:45:16 -07:00
|
|
|
libgee
|
2018-10-30 17:16:20 -07:00
|
|
|
libpthreadstubs
|
2018-09-04 04:45:16 -07:00
|
|
|
librsvg
|
|
|
|
libsecret
|
2018-10-30 17:16:20 -07:00
|
|
|
libtasn1
|
|
|
|
libxcb
|
|
|
|
libxkbcommon
|
|
|
|
p11-kit
|
|
|
|
pcre
|
|
|
|
vte
|
|
|
|
wnck
|
2018-09-04 04:45:16 -07:00
|
|
|
];
|
|
|
|
|
2018-10-30 17:16:20 -07:00
|
|
|
postPatch = ''
|
2018-11-27 09:23:56 -08:00
|
|
|
searchHardCodedPaths
|
2018-10-30 17:16:20 -07:00
|
|
|
'';
|
|
|
|
|
2018-11-27 09:23:56 -08:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DTEST_BUILD=OFF"
|
|
|
|
"-DUSE_VENDOR_LIB=OFF"
|
|
|
|
"-DVERSION=${version}"
|
|
|
|
];
|
2017-04-09 02:44:34 -07:00
|
|
|
|
2018-10-30 15:17:45 -07:00
|
|
|
passthru.updateScript = deepin.updateScript { inherit name; };
|
|
|
|
|
2017-12-18 19:38:26 -08:00
|
|
|
meta = with stdenv.lib; {
|
2018-11-27 09:23:56 -08:00
|
|
|
description = "Default terminal emulator for Deepin";
|
2017-04-09 02:44:34 -07:00
|
|
|
longDescription = ''
|
2017-12-18 19:38:26 -08:00
|
|
|
Deepin terminal, it sharpens your focus in the world of command line!
|
2018-08-31 11:54:39 -07:00
|
|
|
It is an advanced terminal emulator with workspace, multiple
|
|
|
|
windows, remote management, quake mode and other features.
|
2017-04-09 02:44:34 -07:00
|
|
|
'';
|
2018-08-31 11:54:39 -07:00
|
|
|
homepage = https://github.com/linuxdeepin/deepin-terminal;
|
2017-12-18 19:38:26 -08:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2018-09-03 19:06:56 -07:00
|
|
|
maintainers = [ maintainers.romildo ];
|
2017-04-09 02:44:34 -07:00
|
|
|
};
|
|
|
|
}
|