mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +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.
17 lines
408 B
Nix
17 lines
408 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kcoreaddons, ki18n, kitemviews, kservice, kwidgetsaddons, qtbase,
|
|
qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kpeople";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons ki18n kitemviews kservice kwidgetsaddons qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|