3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/terminal-emulators/roxterm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.3 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, 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
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook libxslt ];
2014-09-18 20:26:47 +01:00
2019-09-03 21:45:10 +01:00
buildInputs =
[ gtk3 dbus dbus-glib vte pcre2 harfbuzz libpthreadstubs libXdmcp
2020-11-24 15:29:28 +00:00
util-linuxMinimal glib docbook_xsl xmlto libselinux
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
passthru.tests.test = nixosTests.terminal-emulators.roxterm;
meta = with lib; {
2019-09-03 21:45:10 +01:00
homepage = "https://github.com/realh/roxterm";
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.
'';
maintainers = with maintainers; [ cdepillabout ];
2014-09-18 20:26:47 +01:00
platforms = platforms.linux;
};
}