nixpkgs/pkgs/desktops/xfce4-14/xfce4-terminal/default.nix
Tor Hedin Brønner a7d9f9096c xfce4-14.xfce4-terminal: fix build with updated vte
vte no longer propagates pcre2.
2019-09-30 19:39:50 +02:00

16 lines
340 B
Nix

{ mkXfceDerivation, gtk3, libxfce4ui, vte, xfconf, pcre2 }:
mkXfceDerivation {
category = "apps";
pname = "xfce4-terminal";
version = "0.8.8";
sha256 = "0sg9vwyvhh7pjp83biv7gvf42423a7ly4dc7q2gn28kp6bds2qcp";
buildInputs = [ gtk3 libxfce4ui vte xfconf pcre2 ];
meta = {
description = "A modern terminal emulator";
};
}