mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
e93bd1d445
packaging the `ktouch` touch typing tutor. Due to Qt impurities, it needs to be installed in a profile to find it runtime dependencies.
27 lines
912 B
Nix
27 lines
912 B
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, xorg
|
|
}:
|
|
|
|
|
|
mkDerivation {
|
|
name = "ktouch";
|
|
meta = {
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.schmittlauch ];
|
|
description = "A touch typing tutor from the KDE software collection";
|
|
};
|
|
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 xorg.libxkbfile xorg.libxcb
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|