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

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