about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kreversi.nix
blob: 351555b5f338e46e817673d76a753699fa03fcfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ mkDerivation, lib, extra-cmake-modules, libkdegames, kdeclarative }:

mkDerivation {
  pname = "kreversi";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.kreversi";
    description = "A simple one player strategy game played against the computer";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdeclarative
    libkdegames
  ];
}