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


                                                                                       
                         

















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

mkDerivation {
  pname = "knavalbattle";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.knavalbattle";
    description = "Naval Battle is a ship sinking game";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kdoctools
    ki18n
    kio
    kdnssd
  ];
}