mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
14 lines
410 B
Nix
14 lines
410 B
Nix
{
|
|
mkDerivation, 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);
|
|
}
|