mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 02:46:28 +00:00
16 lines
316 B
Nix
16 lines
316 B
Nix
{ 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";
|
|
};
|
|
}
|