depot/third_party/nixpkgs/pkgs/applications/kde/kolf.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

19 lines
455 B
Nix

{ 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 ];
};
}