mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +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.
18 lines
425 B
Nix
18 lines
425 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
breeze-qt5, kconfig, kconfigwidgets, kiconthemes, kio, knotifications,
|
|
kwayland, libXcursor
|
|
}:
|
|
|
|
# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration
|
|
|
|
mkDerivation {
|
|
name = "plasma-integration";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
breeze-qt5 kconfig kconfigwidgets kiconthemes kio knotifications kwayland
|
|
libXcursor
|
|
];
|
|
}
|