1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/desktops/xfce4-13/xfce4-terminal/default.nix

16 lines
316 B
Nix
Raw Normal View History

2017-12-17 15:02:52 +00:00
{ 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";
};
}