22017988c6
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
20 lines
609 B
Nix
20 lines
609 B
Nix
{ lib, mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2, libxslt, docbook_xml_dtd_45, docbook_xsl, nixosTests }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-terminal";
|
|
version = "1.0.2";
|
|
|
|
sha256 = "sha256-d69SjV7dkiYmc0R5OyU5DV5RM3h51an4idWV872QoE4=";
|
|
|
|
nativeBuildInputs = [ libxslt docbook_xml_dtd_45 docbook_xsl ];
|
|
|
|
buildInputs = [ 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;
|
|
};
|
|
}
|