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

let inherit (lib) optional; in

mkDerivation:

args:

let
  args_ = {

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

  };
in

mkDerivation (args // args_)