ktouch: init at 18.12.0
packaging the `ktouch` touch typing tutor. Due to Qt impurities, it needs to be installed in a profile to find it runtime dependencies.
This commit is contained in:
parent
4b76c4605e
commit
e93bd1d445
@ -141,6 +141,7 @@ let
|
||||
kruler = callPackage ./kruler.nix {};
|
||||
ksystemlog = callPackage ./ksystemlog.nix {};
|
||||
ktnef = callPackage ./ktnef.nix {};
|
||||
ktouch = callPackage ./ktouch.nix {};
|
||||
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
||||
libgravatar = callPackage ./libgravatar.nix {};
|
||||
libkcddb = callPackage ./libkcddb.nix {};
|
||||
|
26
pkgs/applications/kde/ktouch.nix
Normal file
26
pkgs/applications/kde/ktouch.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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;
|
||||
}
|
@ -17811,7 +17811,7 @@ in
|
||||
akonadi akregator ark dolphin dragon ffmpegthumbs filelight gwenview k3b
|
||||
kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kcontacts kdenlive kdf kdialog
|
||||
keditbookmarks kget kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog kwalletmanager marble minuet okular spectacle;
|
||||
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;
|
||||
|
||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user