depot/third_party/nixpkgs/pkgs/applications/kde/kolf.nix
Default email 9543354213 Project import generated by Copybara.
GitOrigin-RevId: c21ba4f7bb4a3d621eb1d187e6b5e816bb85380c
2021-09-28 10:13:01 +02:00

18 lines
438 B
Nix

{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, libkdegames, kconfig, 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 ];
};
}