mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
16 lines
461 B
Nix
16 lines
461 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
gconf, glib, kconfigwidgets, kcoreaddons, kdeclarative, kglobalaccel, ki18n,
|
|
libcanberra_gtk3, libpulseaudio, plasma-framework, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "plasma-pa";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
gconf glib kconfigwidgets kcoreaddons kdeclarative kglobalaccel ki18n
|
|
libcanberra_gtk3 libpulseaudio plasma-framework qtdeclarative
|
|
];
|
|
}
|