summary refs log blame commit diff
path: root/pkgs/applications/kde/killbots.nix
blob: ef81c3b5ec1116167e3593c4e502cdceb901da0d (plain) (tree)
1
2
3
4


                                                                               
                     
















                                                                        
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:

mkDerivation {
  pname = "killbots";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.killbots";
    description = "A game where you avoid robots";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kdoctools
    ki18n
    kio
  ];
}