biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / kolf.nix
blob7d966e60c67938822c03a211a39641959799f96c
1 { lib
2 , mkDerivation
3 , extra-cmake-modules
4 , kdoctools
5 , libkdegames, kio, ktextwidgets
6 }:
8 mkDerivation {
9   pname = "kolf";
10   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
11   buildInputs = [ libkdegames kio ktextwidgets ];
12   meta = {
13     homepage = "https://apps.kde.org/kolf/";
14     description = "Miniature golf";
15     mainProgram = "kolf";
16     license = with lib.licenses; [ gpl2 ];
17     maintainers = with lib.maintainers; [ peterhoeg ];
18   };