1{
2 mkDerivation,
3 lib,
4 extra-cmake-modules,
5 kdoctools,
6 ki18n,
7 kio,
8 libkdegames,
9 knewstuff,
10}:
11
12mkDerivation {
13 pname = "katomic";
14 meta = with lib; {
15 homepage = "https://kde.org/applications/en/games/org.kde.katomic";
16 description = "Fun educational game built around molecular geometry";
17 mainProgram = "katomic";
18 maintainers = with maintainers; [ freezeboy ];
19 license = licenses.gpl2Plus;
20 platforms = platforms.linux;
21 };
22 nativeBuildInputs = [
23 extra-cmake-modules
24 ];
25 buildInputs = [
26 knewstuff
27 libkdegames
28 kdoctools
29 ki18n
30 kio
31 ];
32}