2021-12-13 15:34:22 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, automake, autoconf, intltool, pkg-config, gtk3, vte, wrapGAppsHook
|
2018-07-17 22:11:16 +02:00
|
|
|
, libxslt, docbook_xml_dtd_412, docbook_xsl, libxml2, findXMLCatalogs
|
2017-12-31 11:28:06 +01:00
|
|
|
}:
|
|
|
|
|
2021-12-13 15:34:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "lxterminal";
|
2021-12-13 15:34:22 +01:00
|
|
|
version = "0.3.2";
|
2017-12-31 11:28:06 +01:00
|
|
|
|
2021-12-13 15:34:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lxde";
|
|
|
|
repo = "lxterminal";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-5J21Xvx43Ie01IxB2usyixDl+WZEeFHn2HXZsRS5imo=";
|
2017-12-31 11:28:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-man"
|
2018-02-25 00:49:15 +01:00
|
|
|
"--enable-gtk3"
|
2017-12-31 11:28:06 +01:00
|
|
|
];
|
|
|
|
|
2018-01-02 18:05:58 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 07:50:56 +01:00
|
|
|
automake autoconf intltool pkg-config wrapGAppsHook
|
2018-07-17 22:11:16 +02:00
|
|
|
libxslt docbook_xml_dtd_412 docbook_xsl libxml2 findXMLCatalogs
|
2018-01-02 08:58:20 +01:00
|
|
|
];
|
|
|
|
|
2018-02-25 00:49:15 +01:00
|
|
|
buildInputs = [ gtk3 vte ];
|
2018-01-02 18:05:58 +01:00
|
|
|
|
2018-01-02 08:58:20 +01:00
|
|
|
patches = [
|
|
|
|
./respect-xml-catalog-files-var.patch
|
2017-12-31 11:28:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The standard terminal emulator of LXDE";
|
|
|
|
longDescription = ''
|
|
|
|
LXTerminal is the standard terminal emulator of LXDE. The terminal is a
|
|
|
|
desktop-independent VTE-based terminal emulator for LXDE without any
|
|
|
|
unnecessary dependencies.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://wiki.lxde.org/en/LXTerminal";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
maintainers = [ lib.maintainers.velovix ];
|
|
|
|
platforms = lib.platforms.linux;
|
2017-12-31 11:28:06 +01:00
|
|
|
};
|
|
|
|
}
|