mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
1.0 KiB
Nix
30 lines
1.0 KiB
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules, kdoctools
|
|
, kconfig, kconfigwidgets, kcoreaddons, kdeclarative, ki18n
|
|
, kitemviews, kcmutils, kio, knewstuff, ktexteditor, kwidgetsaddons
|
|
, kwindowsystem, kxmlgui, qtscript, qtdeclarative, kqtquickcharts
|
|
, qtx11extras, qtgraphicaleffects, qtxmlpatterns, qtquickcontrols2
|
|
, xorg
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ktouch";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/ktouch/";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.schmittlauch ];
|
|
description = "A touch typing tutor from the KDE software collection";
|
|
mainProgram = "ktouch";
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools qtdeclarative ];
|
|
buildInputs = [
|
|
kconfig kconfigwidgets kcoreaddons kdeclarative ki18n
|
|
kitemviews kcmutils kio knewstuff ktexteditor kwidgetsaddons
|
|
kwindowsystem kxmlgui qtscript qtdeclarative kqtquickcharts
|
|
qtx11extras qtgraphicaleffects qtxmlpatterns qtquickcontrols2
|
|
xorg.libxkbfile xorg.libxcb
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|