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

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

  sha256 = "1a0b2ih552zhbbx1fc5ad80nafvkc5my3gw89as4mvycnhyd5inj";

  buildInputs = [ gtk3 libxfce4ui vte ];

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