Merge pull request #97242 from ttuegel/qt-5.15

Qt 5.15.0
This commit is contained in:
Thomas Tuegel
2020-09-07 20:18:57 -05:00
committed by GitHub
49 changed files with 2629 additions and 305 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pkgs }:
{ stdenv, buildPythonPackage, fetchFromGitHub, pkgs, qtbase, qmake, soqt }:
buildPythonPackage rec {
pname = "pivy";
@@ -12,20 +12,20 @@ buildPythonPackage rec {
};
nativeBuildInputs = with pkgs; [
swig qt5.qmake cmake
swig qmake cmake
];
buildInputs = with pkgs; with xorg; [
coin3d soqt qt5.qtbase
coin3d soqt qtbase
libGLU libGL
libXi libXext libSM libICE libX11
];
NIX_CFLAGS_COMPILE = toString [
"-I${pkgs.qt5.qtbase.dev}/include/QtCore"
"-I${pkgs.qt5.qtbase.dev}/include/QtGui"
"-I${pkgs.qt5.qtbase.dev}/include/QtOpenGL"
"-I${pkgs.qt5.qtbase.dev}/include/QtWidgets"
"-I${qtbase.dev}/include/QtCore"
"-I${qtbase.dev}/include/QtGui"
"-I${qtbase.dev}/include/QtOpenGL"
"-I${qtbase.dev}/include/QtWidgets"
];
dontUseQmakeConfigure = true;

View File

@@ -4,7 +4,7 @@
, python
, fetchFromGitHub
, fetchpatch
, qt5
, qtbase
, boost
, assimp
, gym
@@ -33,14 +33,14 @@ buildPythonPackage rec {
nativeBuildInputs = [
pkgconfig
qt5.qtbase # needs the `moc` tool
qtbase # needs the `moc` tool
which
];
buildInputs = [
bullet-roboschool
assimp
qt5.qtbase
qtbase
boost
];