summary refs log blame commit diff
path: root/pkgs/applications/kde/kolf.nix
blob: f9fa31b665b2f31e4cadc9c6ce48d11ed4ded653 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                        
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, libkdegames, kconfig, kio, ktextwidgets
}:

mkDerivation {
  name = "kolf";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ libkdegames kio ktextwidgets ];
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ peterhoeg ];
  };
}