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

17 lines
374 B
Nix
Raw Normal View History

{ mkXfceDerivation, gtk3, libxfce4ui, wrapGAppsHook, vte }:
2017-12-17 15:02:52 +00:00
mkXfceDerivation rec {
category = "apps";
pname = "xfce4-terminal";
version = "0.8.7.4";
2017-12-17 15:02:52 +00:00
sha256 = "1s1dq560icg602jjb2ja58x7hxg4ikp3jrrf74v3qgi0ir950k2y";
2017-12-17 15:02:52 +00:00
buildInputs = [ gtk3 libxfce4ui vte ];
nativeBuildInputs = [ wrapGAppsHook ];
2017-12-17 15:02:52 +00:00
meta = {
description = "A modern terminal emulator";
};
}