45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
|
{ stdenv, fetchurl, automake, autoconf, intltool, pkgconfig, gtk2, vte
|
||
|
, libxslt, docbook_xml_dtd_412, docbook_xml_xslt, libxml2, findXMLCatalogs
|
||
|
, buildSingleXMLCatalog
|
||
|
}:
|
||
|
|
||
|
let version = "0.3.1"; in
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "lxterminal-${version}";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/lxde/lxterminal/archive/${version}.tar.gz";
|
||
|
sha256 = "e91f15c8a726d5c13227263476583137a2639d4799c021ca0726c9805021b54c";
|
||
|
};
|
||
|
|
||
|
configureFlags = [
|
||
|
"--enable-man"
|
||
|
"--with-xml-catalog=../catalog.xml" # Generated by buildSingleXMLCatalog
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
automake autoconf intltool pkgconfig gtk2 vte libxslt docbook_xml_dtd_412
|
||
|
docbook_xml_xslt libxml2 findXMLCatalogs buildSingleXMLCatalog
|
||
|
];
|
||
|
|
||
|
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.
|
||
|
'';
|
||
|
homepage = https://wiki.lxde.org/en/LXTerminal;
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
maintainers = [ stdenv.lib.maintainers.velovix ];
|
||
|
platforms = stdenv.lib.platforms.linux;
|
||
|
};
|
||
|
}
|