roboschool: pin to qt514

gstqt5
Thomas Tuegel 2020-09-07 10:35:11 -05:00
parent c5059b88b5
commit a811e37d1c
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59
2 changed files with 6 additions and 5 deletions

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
];

View File

@ -6086,8 +6086,9 @@ in {
robomachine = callPackage ../development/python-modules/robomachine { };
roboschool = callPackage ../development/python-modules/roboschool {
inherit (pkgs) pkgconfig;
}; # use normal pkgconfig, not the python package
inherit (pkgs) pkgconfig; # use normal pkgconfig, not the python package
inherit (qt5) qtbase;
};
robot-detection = callPackage ../development/python-modules/robot-detection { };