about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/ksquares.nix
blob: 326482c3aa8c92cc60a545dbdbe7e7a34cb5abb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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";
    mainProgram = "ksquares";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdoctools
    libkdegames
    kconfig
    kcrash
    kxmlgui
  ];
}