Bump cudatoolkit in pycuda derivation, remove boost dependency

This commit is contained in:
Michael Lingelbach 2020-05-17 12:43:24 -07:00
parent 4b4e2b390a
commit cf5dcbf49f
2 changed files with 4 additions and 4 deletions

View file

@ -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 = ''

View file

@ -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;
};