summary refs log tree commit diff
path: root/pkgs/applications/kde/kcharselect.nix
blob: 4af712b1d5a5671080f49c486ed41c400f410c0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kbookmarks, kconfig, kconfigwidgets, kcrash, kcoreaddons, ki18n, kwidgetsaddons, kxmlgui
}:

mkDerivation {
  name = "kcharselect";
  meta = {
    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;
}