nixpkgs/pkgs/development/libraries/kde-frameworks/kpackage/default.nix

17 lines
404 B
Nix
Raw Normal View History

2016-04-21 08:32:21 -07:00
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kdoctools
, ki18n
}:
kdeFramework {
name = "kpackage";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-07-15 07:59:21 -07:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
2016-04-21 08:32:21 -07:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}