summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-14/xfce4-terminal/default.nix
blob: 3b9cd268d55ae03304ebc7340b9a9787bdab8817 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2 }:

mkXfceDerivation {
  category = "apps";
  pname = "xfce4-terminal";
  version = "0.8.8";

  sha256 = "0sg9vwyvhh7pjp83biv7gvf42423a7ly4dc7q2gn28kp6bds2qcp";

  buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];

  meta = {
    description = "A modern terminal emulator";
  };
}