summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.17/kpackage/default.nix
blob: d2dc262bf1ac608512b675549552faa45bc00388 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ kdeFramework, lib
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kdoctools
, ki18n
, makeQtWrapper
}:

kdeFramework {
  name = "kpackage";
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  buildInputs = [ karchive kconfig ];
  propagatedBuildInputs = [ kcoreaddons ki18n ];
  patches = [
    ./0001-allow-external-paths.patch
    ./0002-qdiriterator-follow-symlinks.patch
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/kpackagetool5"
  '';
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}