05bdbc55ff
Adapted from <https://apps.kde.org/>.
19 lines
438 B
Nix
19 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 ];
|
|
};
|
|
}
|