repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
mkDerivation.nix
blob
98f9a05fac7c4b9d5adda452734527e3a583cb55
1
{ lib, debug, wrapQtAppsHook }:
2
3
let inherit (lib) optional; in
4
5
mkDerivation:
6
7
args:
8
9
let
10
args_ = {
11
12
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
13
14
};
15
in
16
17
mkDerivation (args // args_)