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
ks: add completions for bash and zsh (#364049)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qt3d.nix
blob
f8fd88c1fc809721475fe7bf642b747a757798cc
1
{
2
lib,
3
stdenv,
4
qtModule,
5
qtbase,
6
qtdeclarative,
7
}:
8
9
qtModule {
10
pname = "qt3d";
11
propagatedBuildInputs = [
12
qtbase
13
qtdeclarative
14
];
15
outputs = [
16
"out"
17
"dev"
18
"bin"
19
];
20
# error: use of undeclared identifier 'stat64'
21
env.NIX_CFLAGS_COMPILE = lib.optionalString (
22
stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64
23
) "-Dstat64=stat";
24
}