Merge pull request #88031 from mjlbach/unbreak_pycuda
Pycuda: bump cudatoolkit dependency, fix boost, fix build
This commit is contained in:
commit
f648016c0b
2 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,6 @@
|
|||
, python
|
||||
, mkDerivation
|
||||
, stdenv
|
||||
, isPy3k
|
||||
}:
|
||||
let
|
||||
compyte = import ./compyte.nix {
|
||||
|
@ -29,11 +28,12 @@ buildPythonPackage rec {
|
|||
sha256 = "ada56ce98a41f9f95fe18809f38afbae473a5c62d346cfa126a2d5477f24cc8a";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
preConfigure = with stdenv.lib.versions; ''
|
||||
${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \
|
||||
--boost-lib-dir=${boost}/lib \
|
||||
--no-use-shipped-boost \
|
||||
--boost-python-libname=boost_python${stdenv.lib.optionalString isPy3k "3"}
|
||||
--boost-python-libname=boost_python${major python.version}${minor python.version} \
|
||||
--cuda-root=${cudatoolkit}
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
|
|
|
@ -3268,7 +3268,7 @@ in {
|
|||
pycares = callPackage ../development/python-modules/pycares { };
|
||||
|
||||
pycuda = callPackage ../development/python-modules/pycuda {
|
||||
cudatoolkit = pkgs.cudatoolkit_7_5;
|
||||
cudatoolkit = pkgs.cudatoolkit;
|
||||
inherit (pkgs.stdenv) mkDerivation;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue