nixpkgs/pkgs/applications/kde/ksquares.nix

23 lines
537 B
Nix
Raw Permalink Normal View History

2020-07-26 11:20:46 +00:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, libkdegames, kconfig, kcrash, kxmlgui }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "ksquares";
2020-07-26 11:20:46 +00:00
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.ksquares";
description = "A game of Dots and Boxes";
2020-07-26 11:20:46 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdoctools
libkdegames
kconfig
kcrash
kxmlgui
];
}