nixpkgs/pkgs/development/libraries/qt-5/mkDerivation.nix
Artturin 19e047434c qt5: fix splicing
and simplify some things

remove now unnecessary use of buildPackages
2023-11-02 01:30:11 +02:00

16 lines
177 B
Nix

{ wrapQtAppsHook }:
mkDerivation:
args:
let
args_ = {
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
};
in
mkDerivation (args // args_)