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

mkDerivation {
  pname = "kolf";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ libkdegames kio ktextwidgets ];
  meta = {
    homepage = "https://apps.kde.org/kolf/";
    description = "Miniature golf";
    mainProgram = "kolf";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ peterhoeg ];
  };
}