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

mkDerivation {
  name = "kjs";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ pcre qtbase ];
}