66 lines
1.7 KiB
Nix
66 lines
1.7 KiB
Nix
{ stdenv, fetchurl, fetchFromGitHub, pkgconfig, gtk3, vala, cmake,
|
|
ninja, vte, libgee, wnck, zssh, gettext, librsvg, libsecret,
|
|
json-glib, gobjectIntrospection, deepin-menu, deepin-shortcut-viewer
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "deepin-terminal-${version}";
|
|
version = "3.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = "deepin-terminal";
|
|
rev = version;
|
|
sha256 = "04yvim97a4j8fq5lq2g6svs8qs79np9m4nl6x83iv02wkb9b7gqa";
|
|
};
|
|
|
|
patches = [
|
|
# Do not build vendored zssh and vte
|
|
(fetchurl {
|
|
name = "remove-vendor.patch";
|
|
url = https://git.archlinux.org/svntogit/community.git/plain/trunk/remove-vendor.patch?h=packages/deepin-terminal&id=de701614c19c273b98b60fd6790795ff7d8a157e;
|
|
sha256 = "0g7hhvr7ay9g0cgc6qqvzhbcwvbzvrrilbn8w46ypfzj7w5hlkqv";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace ssh_login.sh --replace /usr/lib/deepin-terminal/zssh "${zssh}/bin/zssh"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
vala
|
|
cmake
|
|
ninja
|
|
gettext
|
|
gobjectIntrospection # For setup hook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
vte
|
|
libgee
|
|
wnck
|
|
librsvg
|
|
libsecret
|
|
json-glib
|
|
deepin-menu
|
|
deepin-shortcut-viewer
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The default terminal emulation for Deepin";
|
|
longDescription = ''
|
|
Deepin terminal, it sharpens your focus in the world of command line!
|
|
It is an advanced terminal emulator with workspace, multiple
|
|
windows, remote management, quake mode and other features.
|
|
'';
|
|
homepage = https://github.com/linuxdeepin/deepin-terminal;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|