anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / kblackbox.nix
blobc85184dcc10926c017f95d77e7d6e257fa1d720b
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     mainProgram = "kblackbox";
9     maintainers = with maintainers; [ freezeboy ];
10     license = licenses.gpl2Plus;
11     platforms = platforms.linux;
12   };
13   nativeBuildInputs = [
14     extra-cmake-modules
15   ];
16   buildInputs = [
17     libkdegames
18     kdoctools
19     ki18n
20     kio
21   ];