bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
49 lines
787 B
Nix
49 lines
787 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, glib
|
|
, gtk3
|
|
, gtk-layer-shell
|
|
, libX11
|
|
, libxfce4ui
|
|
, vte
|
|
, xfconf
|
|
, pcre2
|
|
, libxslt
|
|
, docbook_xml_dtd_45
|
|
, docbook_xsl
|
|
, nixosTests
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-terminal";
|
|
version = "1.1.3";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "sha256-CUIQf22Lmb6MNPd2wk8LlHFNUhdIoC1gzVV6RDP2PfY=";
|
|
|
|
nativeBuildInputs = [
|
|
libxslt
|
|
docbook_xml_dtd_45
|
|
docbook_xsl
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
gtk-layer-shell
|
|
libX11
|
|
libxfce4ui
|
|
vte
|
|
xfconf
|
|
pcre2
|
|
];
|
|
|
|
passthru.tests.test = nixosTests.terminal-emulators.xfce4-terminal;
|
|
|
|
meta = with lib; {
|
|
description = "Modern terminal emulator";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
mainProgram = "xfce4-terminal";
|
|
};
|
|
}
|