2021-11-13 15:30:01 +00:00
|
|
|
{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, libepoxy, fetchFromGitHub
|
2019-09-12 15:25:05 +01:00
|
|
|
, glib, gtk3, harfbuzz, libXdmcp, libXtst, libpthreadstubs
|
2019-09-17 08:54:00 +01:00
|
|
|
, libselinux, libsepol, libtasn1, libxkbcommon, libxslt, p11-kit, pcre2
|
2020-11-13 18:54:56 +00:00
|
|
|
, pkg-config, lib, stdenv, util-linuxMinimal, vte, wrapGAppsHook, xmlto, nixosTests
|
2019-09-03 21:45:10 +01:00
|
|
|
}:
|
2014-09-18 20:26:47 +01:00
|
|
|
|
2019-09-03 21:45:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "roxterm";
|
2022-03-10 19:06:58 +00:00
|
|
|
version = "3.12.1";
|
2014-09-18 20:26:47 +01:00
|
|
|
|
2019-09-03 21:45:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "realh";
|
|
|
|
repo = "roxterm";
|
|
|
|
rev = version;
|
2022-03-10 19:06:58 +00:00
|
|
|
sha256 = "sha256-jVcf/nrEq8dM8rw40ZhXGJjt3DQLroCePtIAdAsVIfs=";
|
2014-09-18 20:26:47 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook libxslt ];
|
2014-09-18 20:26:47 +01:00
|
|
|
|
2019-09-03 21:45:10 +01:00
|
|
|
buildInputs =
|
2019-09-17 08:54:00 +01:00
|
|
|
[ gtk3 dbus dbus-glib vte pcre2 harfbuzz libpthreadstubs libXdmcp
|
2020-11-24 15:29:28 +00:00
|
|
|
util-linuxMinimal glib docbook_xsl xmlto libselinux
|
2021-11-11 04:35:34 +00:00
|
|
|
libsepol libxkbcommon libepoxy at-spi2-core libXtst libtasn1 p11-kit
|
2019-09-03 21:45:10 +01:00
|
|
|
];
|
2014-09-18 20:26:47 +01:00
|
|
|
|
2020-11-13 18:54:56 +00:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.roxterm;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-03 21:45:10 +01:00
|
|
|
homepage = "https://github.com/realh/roxterm";
|
2014-09-19 16:08:37 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
description = "Tabbed, VTE-based terminal emulator";
|
|
|
|
longDescription = ''
|
2016-11-19 17:57:02 +00:00
|
|
|
Tabbed, VTE-based terminal emulator. Similar to gnome-terminal without
|
|
|
|
the dependencies on Gnome.
|
2014-09-19 16:08:37 +01:00
|
|
|
'';
|
2014-09-21 14:05:29 +01:00
|
|
|
maintainers = with maintainers; [ cdepillabout ];
|
2014-09-18 20:26:47 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|