2020-04-24 23:36:52 +00:00
|
|
|
{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, epoxy, fetchpatch, fetchFromGitHub
|
|
|
|
, 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";
|
|
|
|
version = "3.7.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "realh";
|
|
|
|
repo = "roxterm";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "042hchvgk9jzz035zsgnfhh8105zvspbzz6b78waylsdlgqn0pp1";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# This is the commit directly after v3.7.5. It is needed to get roxterm to
|
|
|
|
# build correctly. It can be removed when v3.7.6 (or v3.8.0) has been
|
|
|
|
# released.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/realh/roxterm/commit/f7c38fd48bd1810e16d82794bdfb61a9760a2fe1.patch";
|
|
|
|
sha256 = "1v77b7ilgf8zy1npxxcyc06mq6lck6bi6lw4aksnq3mi61n5znmx";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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
|
2020-04-24 23:36:52 +00:00
|
|
|
libsepol libxkbcommon epoxy at-spi2-core libXtst libtasn1 p11-kit
|
|
|
|
];
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|