about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/katomic.nix
blob: aa00d58c417e4c8d2439273b4766a23f02d2c61e (plain) (blame)
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, libkdegames, knewstuff }:

mkDerivation {
  pname = "katomic";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.katomic";
    description = "Fun educational game built around molecular geometry";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    knewstuff
    libkdegames
    kdoctools
    ki18n
    kio
  ];
}