05bdbc55ff
Adapted from <https://apps.kde.org/>.
21 lines
665 B
Nix
21 lines
665 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
kbookmarks, kconfig, kconfigwidgets, kcrash, kcoreaddons, ki18n, kwidgetsaddons, kxmlgui
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcharselect";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kcharselect/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.schmittlauch ];
|
|
description = "A tool to select special characters from all installed fonts and copy them into the clipboard";
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kbookmarks kconfig kconfigwidgets kcoreaddons kcrash ki18n kwidgetsaddons kxmlgui
|
|
];
|
|
enableParallelBuilding = true;
|
|
}
|