nixpkgs/pkgs/desktops/xfce4-14/xfce4-terminal/default.nix

16 lines
331 B
Nix
Raw Normal View History

2019-08-16 19:56:44 -07:00
{ mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf }:
2017-12-17 07:02:52 -08:00
mkXfceDerivation rec {
category = "apps";
pname = "xfce4-terminal";
2019-08-12 03:38:41 -07:00
version = "0.8.8";
2017-12-17 07:02:52 -08:00
2019-08-12 03:38:41 -07:00
sha256 = "0sg9vwyvhh7pjp83biv7gvf42423a7ly4dc7q2gn28kp6bds2qcp";
2017-12-17 07:02:52 -08:00
2019-08-12 03:38:41 -07:00
buildInputs = [ gtk3 libxfce4ui vte xfconf ];
2017-12-17 07:02:52 -08:00
meta = {
description = "A modern terminal emulator";
};
}