3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce4-14/xfce4-terminal/default.nix

16 lines
331 B
Nix
Raw Normal View History

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