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 17:43:10 +03:00
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
2021-11-14 01:28:25 +03:00
, libkdegames, kio, ktextwidgets
2019-08-19 17:43:10 +03:00
}:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kolf";
2019-08-19 17:43:10 +03:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ libkdegames kio ktextwidgets ];
meta = {
homepage = "https://apps.kde.org/kolf/";
description = "Miniature golf";
2019-08-19 17:43:10 +03:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ peterhoeg ];
};
}