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.
19 lines
530 B
Nix
19 lines
530 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
frameworkintegration, kcmutils, kcompletion, kconfig, kdecoration, kguiaddons,
|
|
ki18n, kwidgetsaddons, kservice, kwayland, kwindowsystem, qtdeclarative,
|
|
qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "oxygen";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
frameworkintegration kcmutils kcompletion kconfig kdecoration kguiaddons
|
|
ki18n kservice kwayland kwidgetsaddons kwindowsystem qtdeclarative
|
|
qtx11extras
|
|
];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|