1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:48:57 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kpackage/default.nix
2016-12-18 08:33:22 -06:00

14 lines
382 B
Nix

{
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);
}