nixpkgs/pkgs/applications/kde/klettres.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
585 B
Nix
Raw Normal View History

2020-07-26 01:27:57 +02:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, phonon, knewstuff }:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "klettres";
2020-07-26 01:27:57 +02:00
meta = with lib; {
2021-12-28 19:03:46 +01:00
homepage = "https://invent.kde.org/education/klettres";
description = "An application specially designed to help the user to learn an alphabet";
mainProgram = "klettres";
2020-07-26 01:27:57 +02:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
phonon
knewstuff
kdoctools
ki18n
kio
];
}