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


                                                                                                            
                    

                                                                       
                                 















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

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