summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/bluedevil.nix
blob: 44e8a26eee15c0dd6753cffcc8989ee60da5431d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, extra-cmake-modules, shared_mime_info,
  bluez-qt, kcoreaddons, kdbusaddons, kded, ki18n, kiconthemes, kio,
  knotifications, kwidgetsaddons, kwindowsystem, plasma-framework, qtdeclarative
}:

mkDerivation {
  name = "bluedevil";
  nativeBuildInputs = [ extra-cmake-modules shared_mime_info ];
  buildInputs = [
    bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative kcoreaddons
    kdbusaddons kded kiconthemes knotifications kwidgetsaddons
  ];
  postInstall = ''
    # Fix the location of logic.js for the plasmoid
    ln -s $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/code/logic.js $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/ui/logic.js
  '';
}