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
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
mkDerivation.nix
blob
a90e229e688d0bea2fe905b6663e1ac6150e68cc
1
{ wrapQtAppsHook }:
2
3
mkDerivation:
4
5
args:
6
7
let
8
args_ = {
9
10
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
11
12
};
13
in
14
15
mkDerivation (args // args_)