mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
658 B
Nix
18 lines
658 B
Nix
{ kdeFramework, lib, ecm, kactivities, karchive
|
|
, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
|
|
, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
|
|
, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
|
|
, qtscript, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "plasma-framework";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ ecm kdoctools ];
|
|
propagatedBuildInputs = [
|
|
kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
|
|
kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
|
|
kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras
|
|
];
|
|
}
|