587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
19 lines
455 B
Nix
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 ];
|
|
};
|
|
}
|