mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
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_)
|