aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/knights.nix
blob: 8b71493ff1868f6e266055c74d24f8058096424a (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, kdoctools, ki18n, kio, kplotting, plasma-framework, libkdegames }:

mkDerivation {
  name = "knights";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.knights";
    description = "A chess game";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    plasma-framework
    kplotting
    kdoctools
    ki18n
    kio
  ];
}