8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
15 lines
342 B
Nix
15 lines
342 B
Nix
{ mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2 }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-terminal";
|
|
version = "0.8.9.2";
|
|
|
|
sha256 = "1vlpfsrdalqmsd86aj0kvvam5skzn6xngigjziwli6q6il6lb9fj";
|
|
|
|
buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];
|
|
|
|
meta = {
|
|
description = "A modern terminal emulator";
|
|
};
|
|
}
|