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
downonspot: remove (#376609)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtwebview.nix
blob
097ff2e03a9c2ac8ab8e83e5ffb94a378f5af237
1
{
2
lib,
3
stdenv,
4
qtModule,
5
qtdeclarative,
6
qtwebengine,
7
}:
8
9
qtModule {
10
pname = "qtwebview";
11
propagatedBuildInputs = [
12
qtdeclarative
13
qtwebengine
14
];
15
outputs = [
16
"out"
17
"dev"
18
"bin"
19
];
20
NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isDarwin "-framework CoreFoundation -framework WebKit";
21
}