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

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