summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/mkDerivation.nix
blob: a90e229e688d0bea2fe905b6663e1ac6150e68cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ wrapQtAppsHook }:

mkDerivation:

args:

let
  args_ = {

    nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];

  };
in

mkDerivation (args // args_)