mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
19e047434c
and simplify some things remove now unnecessary use of buildPackages
16 lines
177 B
Nix
16 lines
177 B
Nix
{ wrapQtAppsHook }:
|
|
|
|
mkDerivation:
|
|
|
|
args:
|
|
|
|
let
|
|
args_ = {
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
|
|
|
};
|
|
in
|
|
|
|
mkDerivation (args // args_)
|