9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, automake, autoconf, intltool, pkg-config, gtk3, vte, wrapGAppsHook
|
|
, libxslt, docbook_xml_dtd_412, docbook_xsl, libxml2, findXMLCatalogs
|
|
}:
|
|
|
|
let version = "0.3.2"; in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "lxterminal";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/lxde/lxterminal/archive/${version}.tar.gz";
|
|
sha256 = "1iafqmccsm3nnzwp6pb2c04iniqqnscj83bq1rvf58ppzk0bvih3";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--enable-man"
|
|
"--enable-gtk3"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
automake autoconf intltool pkg-config wrapGAppsHook
|
|
libxslt docbook_xml_dtd_412 docbook_xsl libxml2 findXMLCatalogs
|
|
];
|
|
|
|
buildInputs = [ gtk3 vte ];
|
|
|
|
patches = [
|
|
./respect-xml-catalog-files-var.patch
|
|
];
|
|
|
|
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 = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.velovix ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|