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


                                                                                             
                     

                                                                        
                                             














                                                  
{ mkDerivation, lib, extra-cmake-modules, kdoctools, libkdegames, kconfig, kcrash, kxmlgui }:

mkDerivation {
  pname = "ksquares";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.ksquares";
    description = "A game of Dots and Boxes";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdoctools
    libkdegames
    kconfig
    kcrash
    kxmlgui
  ];
}