about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kolf.nix
blob: c9a5a61e2812f59a147837b659c8b84efa57d2d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ peterhoeg ];
  };
}