nixpkgs/pkgs/desktops/plasma-5.4/bluedevil.nix

24 lines
670 B
Nix
Raw Normal View History

2015-10-10 14:53:13 +00:00
{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons
, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications
2015-10-18 14:24:59 +00:00
, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework
, qtdeclarative, shared_mime_info
2015-09-27 15:03:00 +00:00
}:
plasmaPackage {
2015-09-27 15:03:00 +00:00
name = "bluedevil";
nativeBuildInputs = [
2015-10-18 14:24:59 +00:00
extra-cmake-modules makeQtWrapper shared_mime_info
];
2015-09-27 15:03:00 +00:00
buildInputs = [
2015-10-10 14:53:13 +00:00
kcoreaddons kdbusaddons kded kiconthemes knotifications
2015-09-27 15:03:00 +00:00
kwidgetsaddons
2015-10-10 14:53:13 +00:00
];
propagatedBuildInputs = [
bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative
2015-09-27 15:03:00 +00:00
];
postInstall = ''
2015-10-18 14:24:59 +00:00
wrapQtProgram "$out/bin/bluedevil-wizard"
wrapQtProgram "$out/bin/bluedevil-sendfile"
2015-09-27 15:03:00 +00:00
'';
}