summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kpackage/default.nix
blob: 2953aea9a557f34d424d66d7fbdb38ae7dddd9a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  kdeFramework, fetchurl, lib, copyPathsToStore,
  extra-cmake-modules, kdoctools,
  karchive, kconfig, kcoreaddons, ki18n
}:

kdeFramework {
  name = "kpackage";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}