about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtdatavis3d.nix
blob: d79320ea139fe3128aba488ae37c0b6147702f1a (plain) (blame)
1
2
3
4
5
6
7
8
9
{ lib, stdenv, qtModule, qtbase, qtdeclarative }:

qtModule {
  pname = "qtdatavis3d";
  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";
}