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

mkDerivation {
  pname = "klines";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.klines";
    description = "A simple but highly addictive one player game";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    kdoctools
    ki18n
    kio
  ];
}