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

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