mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01: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
570 B
Nix
19 lines
570 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
attica, karchive, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes,
|
|
kio, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui, qtbase,
|
|
qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "knewstuff";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
karchive kcompletion kconfig kcoreaddons ki18n kiconthemes kio kitemviews
|
|
ktextwidgets kwidgetsaddons qtbase qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ attica kservice kxmlgui ];
|
|
}
|