Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / ksquares.nix
blobb48ee473523c541d9ab8b772face70221f9f7bf0
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, libkdegames, kconfig, kcrash, kxmlgui }:
3 mkDerivation {
4   pname = "ksquares";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.ksquares";
7     description = "A game of Dots and Boxes";
8     maintainers = with maintainers; [ freezeboy ];
9     license = licenses.gpl2Plus;
10     platforms = platforms.linux;
11   };
12   nativeBuildInputs = [
13     extra-cmake-modules
14   ];
15   buildInputs = [
16     kdoctools
17     libkdegames
18     kconfig
19     kcrash
20     kxmlgui
21   ];