2022-03-30 09:31:56 +00:00
|
|
|
{ lib, mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2, libxslt, docbook_xml_dtd_45, docbook_xsl, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "apps";
|
|
|
|
pname = "xfce4-terminal";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "1.0.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-eCb6KB9fFPuYzNLUm/yYrh+0D60ISzasnv/myStImEI=";
|
2021-04-05 15:23:46 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ libxslt docbook_xml_dtd_45 docbook_xsl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${libxfce4ui.dev}/include/xfce4";
|
2022-12-28 21:21:41 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.xfce4-terminal;
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A modern terminal emulator";
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|