mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
24 lines
670 B
Nix
24 lines
670 B
Nix
{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons
|
|
, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications
|
|
, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework
|
|
, qtdeclarative, shared_mime_info
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "bluedevil";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules makeQtWrapper shared_mime_info
|
|
];
|
|
buildInputs = [
|
|
kcoreaddons kdbusaddons kded kiconthemes knotifications
|
|
kwidgetsaddons
|
|
];
|
|
propagatedBuildInputs = [
|
|
bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/bluedevil-wizard"
|
|
wrapQtProgram "$out/bin/bluedevil-sendfile"
|
|
'';
|
|
}
|