2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
9 lines
319 B
Nix
9 lines
319 B
Nix
{ lib, stdenv, qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qt3d";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
# error: use of undeclared identifier 'stat64'
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dstat64=stat";
|
|
}
|