16 lines
177 B
Nix
16 lines
177 B
Nix
|
{ wrapQtAppsHook }:
|
||
|
|
||
|
mkDerivation:
|
||
|
|
||
|
args:
|
||
|
|
||
|
let
|
||
|
args_ = {
|
||
|
|
||
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
||
|
|
||
|
};
|
||
|
in
|
||
|
|
||
|
mkDerivation (args // args_)
|