Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / katomic.nix
blobaa00d58c417e4c8d2439273b4766a23f02d2c61e
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:
3 mkDerivation {
4   pname = "katomic";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.katomic";
7     description = "Fun educational game built around molecular geometry";
8     maintainers = with maintainers; [ freezeboy ];
9     license = licenses.gpl2Plus;
10     platforms = platforms.linux;
11   };
12   nativeBuildInputs = [
13     extra-cmake-modules
14   ];
15   buildInputs = [
16     knewstuff
17     libkdegames
18     kdoctools
19     ki18n
20     kio
21   ];