Merge pull request #155264 from hrhino/fix/arrayfire
arrayfire: 3.6.4 -> 3.7.3
This commit is contained in:
commit
03f3a0d8c0
1 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkg-config
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
||||||
, opencl-clhpp, ocl-icd, fftw, fftwFloat
|
, opencl-clhpp, ocl-icd, fftw, fftwFloat
|
||||||
, blas, lapack, boost, mesa, libGLU, libGL
|
, blas, lapack, boost, mesa, libGLU, libGL
|
||||||
, freeimage, python3, clfft, clblas
|
, freeimage, python3, clfft, clblas
|
||||||
|
@ -8,11 +8,14 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "arrayfire";
|
pname = "arrayfire";
|
||||||
version = "3.6.4";
|
version = "3.7.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://arrayfire.com/arrayfire_source/arrayfire-full-${version}.tar.bz2";
|
owner = pname;
|
||||||
sha256 = "1fin7a9rliyqic3z83agkpb8zlq663q6gdxsnm156cs8s7f7rc9h";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0gcbg6b6gs38xhks5pp0vkcqs89zl7rh9982jqlzsd0h724qddw0";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
|
Loading…
Reference in a new issue