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

mkDerivation {
  name = "kjsembed";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools qttools ];
  buildInputs = [ ki18n qtsvg ];
  propagatedBuildInputs = [ kjs ];
}