18 lines
221 B
Nix
18 lines
221 B
Nix
{ lib, debug, wrapQtAppsHook }:
|
|
|
|
let inherit (lib) optional; in
|
|
|
|
mkDerivation:
|
|
|
|
args:
|
|
|
|
let
|
|
args_ = {
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
|
|
|
};
|
|
in
|
|
|
|
mkDerivation (args // args_)
|