summary refs log blame commit diff
path: root/pkgs/applications/kde/killbots.nix
blob: ec9b6de82c905578724890fb91a94a62d18c6a7e (plain) (tree)




















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

mkDerivation {
  name = "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
  ];
}