anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / klettres.nix
blob806aa6583d5c39e0c46523cf84ba473b7692837f
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, phonon, knewstuff }:
3 mkDerivation {
4   pname = "klettres";
5   meta = with lib; {
6     homepage = "https://invent.kde.org/education/klettres";
7     description = "Application specially designed to help the user to learn an alphabet";
8     mainProgram = "klettres";
9     maintainers = with maintainers; [ freezeboy ];
10     license = licenses.gpl2Plus;
11     platforms = platforms.linux;
12   };
13   nativeBuildInputs = [
14     extra-cmake-modules
15   ];
16   buildInputs = [
17     phonon
18     knewstuff
19     kdoctools
20     ki18n
21     kio
22   ];