94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
9 lines
313 B
Nix
9 lines
313 B
Nix
{ lib, stdenv, qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtdatavis3d";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
# error: use of undeclared identifier 'stat64'
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dstat64=stat";
|
|
}
|