2019-07-05 16:41:41 +01:00
|
|
|
{ lib, debug, wrapQtAppsHook }:
|
2017-10-24 12:39:54 +01:00
|
|
|
|
|
|
|
let inherit (lib) optional; in
|
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
mkDerivation:
|
2017-10-24 12:39:54 +01:00
|
|
|
|
|
|
|
args:
|
|
|
|
|
|
|
|
let
|
|
|
|
args_ = {
|
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
|
|
|
|
2017-10-24 12:39:54 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
mkDerivation (args // args_)
|