nixpkgs/pkgs/applications/kde/klettres.nix

23 lines
572 B
Nix
Raw Permalink Normal View History

2020-07-25 23:27:57 +00:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, phonon, knewstuff }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "klettres";
2020-07-25 23:27:57 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.klettres";
description = "An application specially designed to help the user to learn an alphabet";
2020-07-25 23:27:57 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
phonon
knewstuff
kdoctools
ki18n
kio
];
}