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

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