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

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