nixpkgs/pkgs/applications/terminal-emulators/roxterm/default.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{ at-spi2-core, cmake, dbus, dbus-glib, docbook_xsl, libepoxy, fetchFromGitHub
, glib, gtk3, harfbuzz, libXdmcp, libXtst, libpthreadstubs
, libselinux, libsepol, libtasn1, libxkbcommon, libxslt, p11-kit, pcre2
, pkg-config, lib, stdenv, util-linuxMinimal, vte, wrapGAppsHook, xmlto
2019-09-03 23:45:10 +03:00
}:
2014-09-18 23:26:47 +04:00
2019-09-03 23:45:10 +03:00
stdenv.mkDerivation rec {
2019-08-14 00:52:01 +03:00
pname = "roxterm";
2021-11-12 13:37:53 +03:00
version = "3.11.1";
2014-09-18 23:26:47 +04:00
2019-09-03 23:45:10 +03:00
src = fetchFromGitHub {
owner = "realh";
repo = "roxterm";
rev = version;
2021-11-12 13:37:53 +03:00
sha256 = "1n7588bl83sp51jwjq97f526c7fkh0kq90idw3nayb4zmi530irx";
2014-09-18 23:26:47 +04:00
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook libxslt ];
2014-09-18 23:26:47 +04:00
2019-09-03 23:45:10 +03:00
buildInputs =
[ gtk3 dbus dbus-glib vte pcre2 harfbuzz libpthreadstubs libXdmcp
2020-11-24 18:29:28 +03:00
util-linuxMinimal glib docbook_xsl xmlto libselinux
libsepol libxkbcommon libepoxy at-spi2-core libXtst libtasn1 p11-kit
2019-09-03 23:45:10 +03:00
];
2014-09-18 23:26:47 +04:00
meta = with lib; {
2019-09-03 23:45:10 +03:00
homepage = "https://github.com/realh/roxterm";
license = licenses.gpl3;
description = "Tabbed, VTE-based terminal emulator";
longDescription = ''
2016-11-19 20:57:02 +03:00
Tabbed, VTE-based terminal emulator. Similar to gnome-terminal without
the dependencies on Gnome.
'';
maintainers = with maintainers; [ cdepillabout ];
2014-09-18 23:26:47 +04:00
platforms = platforms.linux;
};
}