1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/qt-5/modules/qtdatavis3d.nix
2023-04-24 18:22:03 +02:00

10 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";
}