https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
14 lines
331 B
Nix
14 lines
331 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
boost, kconfig, kcoreaddons, kio, kwindowsystem, qtbase, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kactivities";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
boost kconfig kcoreaddons kio kwindowsystem qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|