aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/klettres.nix
blob: e8e0a0aa59ab1990f38b336ea7b555f90a7932ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, phonon, knewstuff }:

mkDerivation {
  name = "klettres";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/utilities/org.kde.klettres";
    description = "KLettres is an application specially designed to help the user to learn an alphabet";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    phonon
    knewstuff
    kdoctools
    ki18n
    kio
  ];
}