about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/plasma-pa.nix
blob: bc39e520f8a6c249b18351be0522b1b0505738fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kconfigwidgets, kcoreaddons, kdeclarative, kglobalaccel, ki18n, kwindowsystem, plasma-framework,
  qtbase, qtdeclarative,
  gconf, glib, libcanberra-gtk3, libpulseaudio, sound-theme-freedesktop
}:

mkDerivation {
  name = "plasma-pa";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    gconf glib libcanberra-gtk3 libpulseaudio sound-theme-freedesktop

    kconfigwidgets kcoreaddons kdeclarative kglobalaccel ki18n plasma-framework
    kwindowsystem

    qtbase qtdeclarative
  ];
}