depot/third_party/nixpkgs/pkgs/applications/kde/kolf.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

18 lines
429 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";
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
}