aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/kmines.nix
blob: 9314cca4a23fa2ec7a0a56453f2d5e26f9f356c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:

mkDerivation {
  name = "kmines";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.kmines";
    description = "KMines is a classic Minesweeper game";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kconfig
    kcrash
    kio
    kdoctools
    ki18n
  ];
}