mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
fix haskellPackages.cuda and some tools dependent on cudatoolkit
This commit is contained in:
parent
1dd6e7dcbc
commit
34beeac70b
@ -64,8 +64,19 @@ self: super: builtins.intersectAttrs super {
|
||||
"--extra-include-dirs=${pkgs.cudatoolkit}/include"
|
||||
];
|
||||
preConfigure = ''
|
||||
unset CC # unconfuse the haskell-cuda configure script
|
||||
sed -i -e 's|/usr/local/cuda|${pkgs.cudatoolkit}|g' configure
|
||||
export CUDA_PATH=${pkgs.cudatoolkit}
|
||||
'';
|
||||
});
|
||||
|
||||
nvvm = overrideCabal super.nvvm (drv: {
|
||||
preConfigure = ''
|
||||
export CUDA_PATH=${pkgs.cudatoolkit}
|
||||
'';
|
||||
});
|
||||
|
||||
cufft = overrideCabal super.cufft (drv: {
|
||||
preConfigure = ''
|
||||
export CUDA_PATH=${pkgs.cudatoolkit}
|
||||
'';
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user