summary refs log blame commit diff
path: root/pkgs/applications/kde/kapman.nix
blob: 01fa984e593322791e57e5cd6a2682ea9526f6ac (plain) (tree)
1
2
3
4
5
6
7


                                                                               
                   

                                                                      
                                                         













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

mkDerivation {
  pname = "kapman";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.kapman";
    description = "Clone of the well known game Pac-Man";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kdoctools
    ki18n
    kio
  ];
}