summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kjs.nix
blob: 311f07241d65f5ad0996e56a8ed293e1670db45a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  pcre, qtbase,
}:

mkDerivation {
  name = "kjs";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ pcre qtbase ];
}