about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/konquest.nix
blob: 7802b9c66c392c742accfb670bb68863831f781b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kdelibs4support
, libkdegames
, qtquickcontrols
}:

mkDerivation {
  pname = "konquest";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kdelibs4support libkdegames qtquickcontrols ];
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ lheckemann ];
  };
}