Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kblackbox.nix
blob9f2f652f558656b2c7b4ac6334c1e786889f8537
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
3 mkDerivation {
4   pname = "kblackbox";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.kblackbox";
7     description = "Game of hide and seek played on a grid of 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     libkdegames
17     kdoctools
18     ki18n
19     kio
20   ];