nixpkgs/pkgs/applications/kde/kolf.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
429 B
Nix
Raw Normal View History

2019-08-19 14:43:10 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
2021-11-13 22:28:25 +00:00
, libkdegames, kio, ktextwidgets
2019-08-19 14:43:10 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kolf";
2019-08-19 14:43:10 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {
homepage = "https://apps.kde.org/kolf/";
description = "Miniature golf";
2019-08-19 14:43:10 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
}