anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / kmines.nix
blob99413733b13bb1b74519300f7868ee3cdbf04b7c
1 { mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
3 mkDerivation {
4   pname = "kmines";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.kmines";
7     description = "Classic Minesweeper game";
8     mainProgram = "kmines";
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     kconfig
19     kcrash
20     kio
21     kdoctools
22     ki18n
23   ];