5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
43 lines
671 B
Nix
43 lines
671 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, glib
|
|
, gtk3
|
|
, libxfce4ui
|
|
, vte
|
|
, xfconf
|
|
, pcre2
|
|
, libxslt
|
|
, docbook_xml_dtd_45
|
|
, docbook_xsl
|
|
, nixosTests
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-terminal";
|
|
version = "1.1.0";
|
|
|
|
sha256 = "sha256-ilxiP1Org5/uSQOzfRgODmouH0BmK3CmCJj1kutNuII=";
|
|
|
|
nativeBuildInputs = [
|
|
libxslt
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libxfce4ui
|
|
vte
|
|
xfconf
|
|
pcre2
|
|
];
|
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.xfce4-terminal;
|
|
|
|
meta = with lib; {
|
|
description = "A modern terminal emulator";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|