mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
30 lines
954 B
Nix
30 lines
954 B
Nix
{ plasmaPackage, extra-cmake-modules, kdoctools, kcompletion
|
|
, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
|
|
, kdelibs4support, ki18n, kiconthemes, kinit, kio, kitemviews
|
|
, knotifications, kservice, kwallet, kwidgetsaddons, kwindowsystem
|
|
, kxmlgui, mobile_broadband_provider_info, modemmanager-qt
|
|
, networkmanager-qt, openconnect, plasma-framework, qtdeclarative
|
|
, solid
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "plasma-nm";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes
|
|
kinit kitemviews knotifications kservice kwallet
|
|
kwidgetsaddons kxmlgui
|
|
mobile_broadband_provider_info modemmanager-qt networkmanager-qt
|
|
openconnect plasma-framework solid
|
|
];
|
|
propagatedBuildInputs = [
|
|
kdeclarative kdelibs4support ki18n kio kwindowsystem qtdeclarative
|
|
];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kde5-nm-connection-editor"
|
|
'';
|
|
}
|