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

14 lines
414 B
Nix
Raw Normal View History

2016-12-18 15:26:15 +01:00
{
kdeFramework, fetchurl, lib, copyPathsToStore,
extra-cmake-modules, kdoctools,
2016-12-18 15:26:15 +01:00
karchive, kconfig, kcoreaddons, ki18n
2016-04-21 17:32:21 +02:00
}:
kdeFramework {
name = "kpackage";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
2016-12-18 15:26:15 +01:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
2016-04-21 17:32:21 +02:00
}