about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kcharselect.nix
blob: 0bc76b4208744562a11a7ce67fa7b7cc43d35625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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;
}