19e047434c
and simplify some things remove now unnecessary use of buildPackages
15 lines
177 B
Nix
15 lines
177 B
Nix
{ wrapQtAppsHook }:
|
|
|
|
mkDerivation:
|
|
|
|
args:
|
|
|
|
let
|
|
args_ = {
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
|
|
|
};
|
|
in
|
|
|
|
mkDerivation (args // args_)
|