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
508 B
Nix
18 lines
508 B
Nix
{
|
|
mkDerivation, lib, copyPathsToStore,
|
|
extra-cmake-modules,
|
|
breeze-icons, karchive, kcoreaddons, kconfigwidgets, ki18n, kitemviews,
|
|
qtbase, qtsvg,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kiconthemes";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
breeze-icons karchive kcoreaddons kconfigwidgets ki18n kitemviews
|
|
];
|
|
propagatedBuildInputs = [ qtbase qtsvg ];
|
|
}
|