2021-12-06 16:07:01 +00:00
|
|
|
{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, libepoxy, fetchFromGitHub
|
2020-04-24 23:36:52 +00:00
|
|
|
, glib, gtk3, harfbuzz, libXdmcp, libXtst, libpthreadstubs
|
|
|
|
, libselinux, libsepol, libtasn1, libxkbcommon, libxslt, p11-kit, pcre2
|
2021-02-05 17:12:51 +00:00
|
|
|
, pkg-config, lib, stdenv, util-linuxMinimal, vte, wrapGAppsHook, xmlto
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "roxterm";
|
2021-12-06 16:07:01 +00:00
|
|
|
version = "3.11.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "realh";
|
|
|
|
repo = "roxterm";
|
|
|
|
rev = version;
|
2021-12-06 16:07:01 +00:00
|
|
|
sha256 = "1n7588bl83sp51jwjq97f526c7fkh0kq90idw3nayb4zmi530irx";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook libxslt ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ gtk3 dbus dbus-glib vte pcre2 harfbuzz libpthreadstubs libXdmcp
|
2020-11-24 20:58:05 +00:00
|
|
|
util-linuxMinimal glib docbook_xsl xmlto libselinux
|
2021-12-06 16:07:01 +00:00
|
|
|
libsepol libxkbcommon libepoxy at-spi2-core libXtst libtasn1 p11-kit
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/realh/roxterm";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
description = "Tabbed, VTE-based terminal emulator";
|
|
|
|
longDescription = ''
|
|
|
|
Tabbed, VTE-based terminal emulator. Similar to gnome-terminal without
|
|
|
|
the dependencies on Gnome.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ cdepillabout ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|